aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Lars Hjemli <hjemli@gmail.com>2008-03-25 07:10:59 (JST)
committerGravatar Lars Hjemli <hjemli@gmail.com>2008-03-25 07:27:16 (JST)
commit92908af4558d7362c7deeb05254343a5a5f11a05 (patch)
tree6913a6f567375446fb680bc7e94dbabb5d8e496d /Makefile
parentdf90b51bafec24336cf30339b2978ff6df22b075 (diff)
downloadcgit-92908af4558d7362c7deeb05254343a5a5f11a05.zip
cgit-92908af4558d7362c7deeb05254343a5a5f11a05.tar.gz
Move cgit_version from shared.c to cgit.c
With the matching Makefile change, this makes sure that only cgit.o and cgit proper needs to be rebuildt when VERSION has been modified. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index faf7b98..c9be8fa 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,9 @@ CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
66cgit: $(OBJECTS) 66cgit: $(OBJECTS)
67 $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 67 $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
68 68
69$(OBJECTS): git/xdiff/lib.a git/libgit.a VERSION 69$(OBJECTS): git/xdiff/lib.a git/libgit.a
70
71cgit.o: VERSION
70 72
71-include $(OBJECTS:.o=.d) 73-include $(OBJECTS:.o=.d)
72 74