aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFredrik Kuivinen <freku045@student.liu.se>2006-03-05 12:03:51 +0100
committerJunio C Hamano <junkio@cox.net>2006-03-05 14:49:58 -0800
commitea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 (patch)
treec8ae4b5a792fc5a81dbb33b706b2c756a4cb6607 /Makefile
parentea5ed3abce724725360be88663cec1add7547d46 (diff)
downloadgit-ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7.tar.gz
git-ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7.tar.xz
git-blame: Make the output human readable
The default output mode is slightly different from git-annotate's. However, git-annotate's output mode can be obtained by using the '-c' flag. Signed-off-by: Fredrik Kuivinen <freku045@student.liu.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b6d8804d4..eb1887d77 100644
--- a/Makefile
+++ b/Makefile
@@ -534,6 +534,10 @@ git-rev-list$X: rev-list.o $(LIB_FILE)
$(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
$(LIBS) $(OPENSSL_LIBSSL)
+git-blame$X: blame.o $(LIB_FILE)
+ $(CC) $(ALL_CFLAGS) -o $@ $(ALL_LDFLAGS) $(filter %.o,$^) \
+ $(LIBS) -lm
+
init-db.o: init-db.c
$(CC) -c $(ALL_CFLAGS) \
-DDEFAULT_GIT_TEMPLATE_DIR='"$(template_dir_SQ)"' $*.c