author | Lars Hjemli <hjemli@gmail.com> | 2008-07-22 17:30:06 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-07-22 17:42:06 (UTC) |
commit | bb7485e8d7932ba04a94714bfe6a86a1e323435c (patch) (unidiff) | |
tree | 1add8c867ba8ecd54314e131859d985de5f790fe | |
parent | f49ea2c9968a8b30c0c268ca52aa066960fd98f7 (diff) | |
download | cgit-bb7485e8d7932ba04a94714bfe6a86a1e323435c.zip cgit-bb7485e8d7932ba04a94714bfe6a86a1e323435c.tar.gz cgit-bb7485e8d7932ba04a94714bfe6a86a1e323435c.tar.bz2 |
Makefile: fix git dependency rules
The objectfiles depends unconditionally on some specific git binaries while
those git binaries depends on the phony `git` target and this patch seems to
get these dependencies spelled out correctly.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -77,3 +77,3 @@ endif | |||
77 | 77 | ||
78 | all: cgit git | 78 | all: cgit |
79 | 79 | ||
@@ -95,3 +95,3 @@ cgit: $(OBJECTS) | |||
95 | 95 | ||
96 | $(OBJECTS): git/xdiff/lib.a git/libgit.a | 96 | $(OBJECTS): | git/xdiff/lib.a git/libgit.a |
97 | 97 | ||
@@ -101,5 +101,3 @@ cgit.o: VERSION | |||
101 | 101 | ||
102 | git/xdiff/lib.a: | git | 102 | git/xdiff/lib.a, git/libgit.a: git |
103 | |||
104 | git/libgit.a: | git | ||
105 | 103 | ||