Add the missing "all" target in the Cygwin makefile
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sat, 28 Apr 2001 12:07:41 +0000 (12:07 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sat, 28 Apr 2001 12:07:41 +0000 (12:07 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@1085 cda61777-01e9-0310-a592-d414129be87e

mkfiles.pl

index 5668690..f64fbaf 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" : "";