summaryrefslogtreecommitdiffabout
path: root/Makefile
authorLars Hjemli <hjemli@gmail.com>2007-05-13 20:25:14 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2007-05-13 20:31:11 (UTC)
commit8a3685bcf2612206fc24a2421acb53dd83aeab85 (patch) (unidiff)
tree4628d87e55e87ead2e097cdacf8b4160cd0fc118 /Makefile
parentc6cf3a424a0860d69b290254d9b19d35527b2d27 (diff)
downloadcgit-8a3685bcf2612206fc24a2421acb53dd83aeab85.zip
cgit-8a3685bcf2612206fc24a2421acb53dd83aeab85.tar.gz
cgit-8a3685bcf2612206fc24a2421acb53dd83aeab85.tar.bz2
Add graphical diffstat to commit view
The diffstat is calculated against the leftmost parent of the commit. This gives nice information for "normal" merges while octopus merges are less than optimal, so the diffstat isn't calculated for those merges. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ccc7582..ea4d818 100644
--- a/Makefile
+++ b/Makefile
@@ -46,24 +46,25 @@ $(OBJECTS): cgit.h git/libgit.a
46 46
47git/libgit.a: 47git/libgit.a:
48 $(INITGIT) 48 $(INITGIT)
49 $(MAKE) -C git 49 $(MAKE) -C git
50 50
51# 51#
52# phony targets 52# phony targets
53# 53#
54install: all clean-cache 54install: all clean-cache
55 mkdir -p $(prefix) 55 mkdir -p $(prefix)
56 install cgit $(prefix)/cgit.cgi 56 install cgit $(prefix)/cgit.cgi
57 install cgit.css $(prefix)/cgit.css 57 install cgit.css $(prefix)/cgit.css
58 install add.png del.png $(prefix)/
58 59
59clean-cgit: 60clean-cgit:
60 rm -f cgit *.o 61 rm -f cgit *.o
61 62
62distclean-cgit: clean-cgit 63distclean-cgit: clean-cgit
63 git clean -d -x 64 git clean -d -x
64 65
65clean-sub: 66clean-sub:
66 $(MAKE) -C git clean 67 $(MAKE) -C git clean
67 68
68distclean-sub: clean-sub 69distclean-sub: clean-sub
69 $(shell cd git && git clean -d -x) 70 $(shell cd git && git clean -d -x)