summaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-05-15 20:07:41 -0400
committermidipix <writeonce@midipix.org>2016-05-15 21:15:26 -0400
commitaa4f3c33c859eb85aba2cf53409cf152b0279b18 (patch)
treef375c96aaeb04136c669dc4e41262e54e6347ea7 /Makefile.in
parent90e9fb1df40eb79e14a4c5aadcd7a8c6e69e2206 (diff)
downloadpemagine-aa4f3c33c859eb85aba2cf53409cf152b0279b18.tar.bz2
pemagine-aa4f3c33c859eb85aba2cf53409cf152b0279b18.tar.xz
build system: remove generic dependency on version.tag.
Since git-status touches several files (including .git/index), a generic object file dependency on version.tag means that all objects get recompiled whenever git-status is invoked. This patch works around this problem at the cost of ad-hoc dependency rules for specific objects.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 9f87f7f..962fab4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -95,10 +95,10 @@ include $(PROJECT_DIR)/project/overrides.mk
$(APP_SRCS:%.c=%.o): CFLAGS_STATIC = $(CFLAGS_APP)
-src/%.lo: $(PROJECT_DIR)/src/%.c $(ALL_HEADERS) host.tag tree.tag version.tag
+src/%.lo: $(PROJECT_DIR)/src/%.c $(ALL_HEADERS) host.tag tree.tag
$(CC) -c -o $@ $< $(CFLAGS_SHARED)
-src/%.o: $(PROJECT_DIR)/src/%.c $(ALL_HEADERS) host.tag tree.tag version.tag
+src/%.o: $(PROJECT_DIR)/src/%.c $(ALL_HEADERS) host.tag tree.tag
$(CC) -c -o $@ $< $(CFLAGS_STATIC)
lib/%$(OS_LIB_SUFFIX)$(VER_XYZ):