diff options
author | Lars Hjemli | 2008-08-06 18:52:27 +0200 |
---|---|---|
committer | Lars Hjemli | 2008-08-06 18:52:27 +0200 |
commit | 8c2a1367c49dbe54c90f63ae93e0c78473c7dfba (patch) | |
tree | 5ed4ea816af2f82ed43b9f875406b9394cbadde4 | |
parent | Merge branch 'lh/atom' (diff) | |
download | cgit-8c2a1367c49dbe54c90f63ae93e0c78473c7dfba.tar.gz cgit-8c2a1367c49dbe54c90f63ae93e0c78473c7dfba.zip |
Makefile: Git dependency, take 3
In commit a1266edfe the build instructions for the git libs where moved to their real targets, which in turn depended on the phony target `git`. But since `git` is an actual directory in cgit the git libs wouldn't be recompiled when needed. So with this patch (third time lucky), cgit is declared to depend on the really phony target `libgit` and the build instructions for `libgit` is to unconditionally rebuild git/libgit.a and git/xdiff/lib.a. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile index 6458431..ab0bbd4 100644 --- a/Makefile +++ b/Makefile | |||
@@ -74,7 +74,7 @@ ifdef NEEDS_LIBICONV | |||
74 | endif | 74 | endif |
75 | 75 | ||
76 | 76 | ||
77 | .PHONY: all git test install uninstall clean force-version get-git | 77 | .PHONY: all libgit test install uninstall clean force-version get-git |
78 | 78 | ||
79 | all: cgit | 79 | all: cgit |
80 | 80 | ||
@@ -91,17 +91,15 @@ CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' | |||
91 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' | 91 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
92 | 92 | ||
93 | 93 | ||
94 | cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a | 94 | cgit: $(OBJECTS) libgit |
95 | $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 95 | $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
96 | 96 | ||
97 | cgit.o: VERSION | 97 | cgit.o: VERSION |
98 | 98 | ||
99 | -include $(OBJECTS:.o=.d) | 99 | -include $(OBJECTS:.o=.d) |
100 | 100 | ||
101 | git/libgit.a: git | 101 | libgit: |
102 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | 102 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a |
103 | |||
104 | git/xdiff/lib.a: git | ||
105 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a | 103 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a |
106 | 104 | ||
107 | test: all | 105 | test: all |