1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Add the missing "all" target in the Cygwin makefile

[originally from svn r1085]
This commit is contained in:
Simon Tatham 2001-04-28 12:07:41 +00:00
parent 713679a0fa
commit 580cde3fde

View File

@ -94,6 +94,9 @@ print
"%.res.o: %.rc\n".
"\t\$(RC) \$(FWHACK) \$(RCFL) \$(RCFLAGS) \$< \$\@\n".
"\n";
print "all:";
print map { " $_.exe" } @projects;
print "\n\n";
foreach $p (@projects) {
print $p, ".exe: ", &project($p), "\n";
my $mw = $gui{$p} ? " -mwindows" : "";