From: simon Date: Sat, 28 Apr 2001 12:07:41 +0000 (+0000) Subject: Add the missing "all" target in the Cygwin makefile X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/142329905de1d9ebe4e3dc9409a6131c291c6539 Add the missing "all" target in the Cygwin makefile git-svn-id: svn://svn.tartarus.org/sgt/putty@1085 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mkfiles.pl b/mkfiles.pl index 5668690a..f64fbaf8 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -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" : "";