From 201e9294600ba7336871e90eb00e1a1db6e835cf Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 14 Dec 1999 09:29:55 +0000 Subject: [PATCH] Couple of bug fixes to cygwin makefile git-svn-id: svn://svn.tartarus.org/sgt/putty@350 cda61777-01e9-0310-a592-d414129be87e --- mkfiles.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mkfiles.pl b/mkfiles.pl index 70eed6c5..71fd71dd 100755 --- a/mkfiles.pl +++ b/mkfiles.pl @@ -74,17 +74,17 @@ print "RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1 --define WINVER=0x0400\n". "LIBS = -ladvapi32 -luser32 -lgdi32 -lwsock32 -lcomctl32 -lcomdlg32\n". "OBJ=o\n". -"RES=res\n". +"RES=o\n". "\n"; print $store{"objdefs"}; print "\n". ".SUFFIXES:\n". "\n". -"%.o %.obj: %.c\n". +"%.o: %.c\n". "\t\$(CC) \$(FWHACK) \$(CFLAGS) -c \$<\n". "\n". -"%.res: %.rc\n". +"%.o: %.rc\n". "\t\$(RC) \$(FWHACK) \$(RCFLAGS) \$<\n". "\n"; foreach $p (@projects) { @@ -97,7 +97,7 @@ print "version.o: FORCE\n". "# Hack to force version.o to be rebuilt always\n". "FORCE:\n". -"\t\$(CC) \$(FWHACK) \$(CFLAGS) \$(VER) -c \$<\n\n". +"\t\$(CC) \$(FWHACK) \$(CFLAGS) \$(VER) -c version.c\n\n". "clean:\n". "\trm -f *.o *.exe *.res\n". "\n"; -- 2.11.0