aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2006-02-28 11:30:19 -0800
committerJunio C Hamano <junkio@cox.net>2006-02-28 14:49:34 -0800
commit70b006b9712b57741ec1320b15aef2f8b1d6a905 (patch)
tree7845b22673d54b11eca632f19a6a157d2bd949df /Makefile
parentf67b45f862d17b54037b9b59eefc385624d1fa83 (diff)
downloadgit-70b006b9712b57741ec1320b15aef2f8b1d6a905.tar.gz
git-70b006b9712b57741ec1320b15aef2f8b1d6a905.tar.xz
Tie it all together: "git log"
This is what the previous diffs all built up to. We can do "git log" as a trivial small helper function inside git.c, because the infrastructure is all there for us to use as a library. Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0b1a9988b..ead13bec0 100644
--- a/Makefile
+++ b/Makefile
@@ -450,7 +450,7 @@ strip: $(PROGRAMS) git$X
git$X: git.c $(LIB_FILE)
$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
- $(CFLAGS) $(COMPAT_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE)
+ $(ALL_CFLAGS) -o $@ $(filter %.c,$^) $(LIB_FILE) $(LIBS)
$(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
rm -f $@