Don't use GNUish pattern rules in the Unix Makefile, since they're not
authorben <ben@cda61777-01e9-0310-a592-d414129be87e>
Fri, 14 Jan 2005 12:26:38 +0000 (12:26 +0000)
committerben <ben@cda61777-01e9-0310-a592-d414129be87e>
Fri, 14 Jan 2005 12:26:38 +0000 (12:26 +0000)
supported by non-GNU makes.  This allows the standard Solaris /usr/ccs/bin/make
to handle that Makefile.

git-svn-id: svn://svn.tartarus.org/sgt/putty@5108 cda61777-01e9-0310-a592-d414129be87e

mkfiles.pl

index 840a409..c789d92 100755 (executable)
@@ -895,8 +895,6 @@ if (defined $makefiles{'gtk'}) {
     "\n".
     ".SUFFIXES:\n".
     "\n".
-    "%.o:\n".
-    "\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c \$<\n".
     "\n";
     print &splitline("all:" . join "", map { " $_" } &progrealnames("XU"));
     print "\n\n";
@@ -911,6 +909,7 @@ if (defined $makefiles{'gtk'}) {
     foreach $d (&deps("X.o", undef, $dirpfx, "/", "gtk")) {
       print &splitline(sprintf("%s: %s", $d->{obj}, join " ", @{$d->{deps}})),
           "\n";
+      print &splitline("\t\$(CC) \$(COMPAT) \$(FWHACK) \$(XFLAGS) \$(CFLAGS) -c $d->{deps}->[0]\n");
     }
     print "\n";
     print $makefile_extra{'gtk'};