http://www.perlmonks.org?node_id=1006969


in reply to Re: pp only to create executable when source has changed
in thread pp only to create executable when source has changed

Aha, I get it, you make a script that checks the date of modification of a file. If the modification time of the .pl (perl script) is greater than the corresponding .exe (executable file), you generate a new executable.

Never looked at the problem from this angle. But this wont help you 100% on the dependencies, like when I require a .pl, which store the genetal subroutines. So now I get the use and power of a make file

So final stage is finding a good example of a makefile using PAR:Packer, so pp instead of cc so I can parse my code into)

  • Comment on Re^2: pp only to create executable when source has changed

Replies are listed 'Best First'.
Re^3: pp only to create executable when source has changed
by gepebril69 (Scribe) on Dec 04, 2012 at 12:52 UTC

    Has anyone an idea of how to do this as GNU make seems to be quite complex for a newbie like me and all examples are in C.