From 6e187a501af90b3c34b543f7e38c18f425b96f28 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 28 Nov 2009 13:32:12 -0800 Subject: [PATCH] updates makefiles to include dependency on config.h adds the dependency of wbres.o on config.c introduced by having the VersionInfo in the resource --- winboard/makefile.gcc | 2 +- winboard/makefile.ms | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/winboard/makefile.gcc b/winboard/makefile.gcc index c130416..27cebc0 100644 --- a/winboard/makefile.gcc +++ b/winboard/makefile.gcc @@ -70,7 +70,7 @@ $(PROJ).hlp : $(PROJ).rtf # Update the resource if necessary -wbres.o: $(PROJ).rc $(PROJ).h resource.h +wbres.o: $(PROJ).rc $(PROJ).h resource.h config.h windres $(DEFS) --use-temp-file --include-dir .. $< -O coff -o $@ diff --git a/winboard/makefile.ms b/winboard/makefile.ms index 6b995b0..2a8e1d1 100644 --- a/winboard/makefile.ms +++ b/winboard/makefile.ms @@ -84,7 +84,7 @@ $(PROJ).hlp : $(PROJ).rtf # Update the resource if necessary -$(PROJ).res: $(PROJ).rc $(PROJ).h resource.h +$(PROJ).res: $(PROJ).rc $(PROJ).h resource.h config.h $(RC) $(CF) -r -fo $(PROJ).res $(PROJ).rc parser.c: ../parser.l -- 1.7.0.4