diff options
author | Fredrik Kuivinen <freku045@student.liu.se> | 2006-03-05 12:03:51 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-05 14:49:58 -0800 |
commit | ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7 (patch) | |
tree | c8ae4b5a792fc5a81dbb33b706b2c756a4cb6607 /Makefile | |
parent | ea5ed3abce724725360be88663cec1add7547d46 (diff) | |
download | git-ea4c7f9bf69e781dd0cd88d2bccb2bf5cc15c9a7.tar.gz |
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-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |