in reply to how to create a makefile using PAR::Packer

Your SOPW baffles me (perhaps because of my own iggerance or deficient caffination) but some clarification would help:
  1. Would Module::Build work?
  2. How does Par Packer fit your intent?
  3. What is it that you're building that requires a makfile?
  4. How does the concept/functionality of require play a role?

Replies are listed 'Best First'.
Re^2: how to create a makefile using PAR::Packer
by gepebril69 (Scribe) on Dec 11, 2012 at 15:22 UTC

    What does SOPW mean?

    1) I don't want to build Perl modules, but executables

    2) To build executables like: pp -o file.exe --link=C:\strawberry\c\bin\libmysql_.dll -x -c -vvv file.pl

    3) I have a project that consists of several .pl that I want to turn into .exe file (Windows). I can build them with a .bat file containing the pp calls but that does not include dependencies. So I want to make a new .exe if a related .pl file has changed, including the .pl file used by require

    4) When .pl are used within a .pl file the .exe. depends on them aswel