summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Makefile4
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b5f186d2..4330918a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2015-02-09 Kaz Kylheku <kaz@kylheku.com>
+ * Makefile: Add dependency froml $(EXTRA_OBJS-y) to header
+ file and config.h, so windows resource file is rebuilt
+ when the version changes.
+
+2015-02-09 Kaz Kylheku <kaz@kylheku.com>
+
* Makefile: Removing bogus eval which refers to nonexistent
DEP_INSTANTIATE macro.
diff --git a/Makefile b/Makefile
index d6f7846b..89ebcc32 100644
--- a/Makefile
+++ b/Makefile
@@ -174,7 +174,9 @@ endef
-include $(OBJS:.o=.d) $(OBJS:.o=.v)
# Add dependencies
-$(call DEP,$(OBJS),$(conf_dir)/config.make $(conf_dir)/config.h)
+$(call DEP,$(OBJS) $(EXTRA_OBJS-y),\
+ $(conf_dir)/config.make $(conf_dir)/config.h)
+
$(call DEP,opt/lex.yy.o dbg/lex.yy.o,y.tab.h)
lex.yy.c: parser.l