From 580cde3fde5b1a96951cb2081ebcc3a91356aa32 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 28 Apr 2001 12:07:41 +0000 Subject: [PATCH] Add the missing "all" target in the Cygwin makefile [originally from svn r1085] --- mkfiles.pl | 3 +++ 1 file changed, 3 insertions(+) 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" : "";