in reply to pp only to create executable when source has changed
my %files = "source1.pl" => " source1.exe", "source2.pl" => " source2.exe", ... "source375.pl" => " source375.exe", ); while (my ($source, $exe) = keys %files) { my ($source, $exe) = splice(@ARGV, 0, 2); if (-m $source > -m $exe) { system "pp -o $exe --link=C:\strawberry\c\bin\libmysql_.dll -x + -c -vvv $source"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: pp only to create executable when source has changed (pseudocode)
by LanX (Saint) on Dec 02, 2012 at 20:20 UTC | |
by muba (Priest) on Dec 06, 2012 at 17:48 UTC | |
by LanX (Saint) on Dec 06, 2012 at 21:51 UTC | |
|
Re^2: pp only to create executable when source has changed
by gepebril69 (Scribe) on Dec 04, 2012 at 00:28 UTC | |
by gepebril69 (Scribe) on Dec 04, 2012 at 12:52 UTC |