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-11-10 23:35:49 -0500
commit0adc0821f9577975c2f06f2afc8280418413ae62 (patch)
tree6422aaa1f83d6fa09c466925e919716d9acc2ff6 /Makefile.in
parent972b5987c491e022daa27ffe66e412af10b216ec (diff)
downloadperk-0adc0821f9577975c2f06f2afc8280418413ae62.tar.bz2
perk-0adc0821f9577975c2f06f2afc8280418413ae62.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):