]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Add the missing "all" target in the Cygwin makefile
authorSimon Tatham <anakin@pobox.com>
Sat, 28 Apr 2001 12:07:41 +0000 (12:07 +0000)
committerSimon Tatham <anakin@pobox.com>
Sat, 28 Apr 2001 12:07:41 +0000 (12:07 +0000)
[originally from svn r1085]

mkfiles.pl

index 5668690a5e8ee6fb42790221058cb49cf5093c46..f64fbaf87f1f79fd38f57fe9d257cc4fe6040879 100755 (executable)
@@ -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" : "";