>>>>> "Hugh" == Hugh S Myers <[EMAIL PROTECTED]> writes:
Hugh> I now have a README that in part says: Hugh> perl Makefile.PL Hugh> perl script/db.pl Hugh> make Hugh> make test Hugh> make install Hugh> I'd just as soon that db.pl got run as part of the just 'make' part rather Hugh> than as a stand alone. This, of course, would get me back to a more vanilla Hugh> situation--devoutly to be desired! As always, the trick in "make" is to figure out "what depends on your script being run", and then hook the execution of the script into that step. Does it have to be done before a "make build"? Does it have to be done before a "make test"? What step fails if I don't do it at all? -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 <[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/> Perl/Unix/security consulting, Technical writing, Comedy, etc. etc. See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
