in reply to Creating a distribution with several .pm files

Part of the answer: in Foo/Makefile.PL, include a line:
Writemakefile(NAME => 'Bar',
   blah blah blah
   DIR => [ 'Bar' ]
)
And then, create a Foo/Bar/Makefile.PL. But in this new file, how do you specify both Baz.pm and Quux.pm? Guess we have to look further in the docs.
  • Comment on Re: Creating a distribution with several .pm files