diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-02-28 11:30:19 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-28 14:49:34 -0800 |
commit | 70b006b9712b57741ec1320b15aef2f8b1d6a905 (patch) | |
tree | 7845b22673d54b11eca632f19a6a157d2bd949df /Makefile | |
parent | f67b45f862d17b54037b9b59eefc385624d1fa83 (diff) | |
download | git-70b006b9712b57741ec1320b15aef2f8b1d6a905.tar.gz |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $@ |