summaryrefslogtreecommitdiffabout
path: root/Makefile
Unidiff
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 e1436a3..78aad10 100644
--- a/Makefile
+++ b/Makefile
@@ -11,96 +11,97 @@ GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
11# Let the user override the above settings. 11# Let the user override the above settings.
12# 12#
13-include cgit.conf 13-include cgit.conf
14 14
15# 15#
16# Define a way to invoke make in subdirs quietly, shamelessly ripped 16# Define a way to invoke make in subdirs quietly, shamelessly ripped
17# from git.git 17# from git.git
18# 18#
19QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir 19QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
20QUIET_SUBDIR1 = 20QUIET_SUBDIR1 =
21 21
22ifneq ($(findstring $(MAKEFLAGS),w),w) 22ifneq ($(findstring $(MAKEFLAGS),w),w)
23PRINT_DIR = --no-print-directory 23PRINT_DIR = --no-print-directory
24else # "make -w" 24else # "make -w"
25NO_SUBDIR = : 25NO_SUBDIR = :
26endif 26endif
27 27
28ifndef V 28ifndef V
29 QUIET_CC = @echo ' ' CC $@; 29 QUIET_CC = @echo ' ' CC $@;
30 QUIET_MM = @echo ' ' MM $@; 30 QUIET_MM = @echo ' ' MM $@;
31 QUIET_SUBDIR0 = +@subdir= 31 QUIET_SUBDIR0 = +@subdir=
32 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ 32 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
33 $(MAKE) $(PRINT_DIR) -C $$subdir 33 $(MAKE) $(PRINT_DIR) -C $$subdir
34endif 34endif
35 35
36# 36#
37# Define a pattern rule for automatic dependency building 37# Define a pattern rule for automatic dependency building
38# 38#
39%.d: %.c 39%.d: %.c
40 $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@ 40 $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@
41 41
42# 42#
43# Define a pattern rule for silent object building 43# Define a pattern rule for silent object building
44# 44#
45%.o: %.c 45%.o: %.c
46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< 46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
47 47
48 48
49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto 49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
50OBJECTS = 50OBJECTS =
51OBJECTS += cache.o 51OBJECTS += cache.o
52OBJECTS += cgit.o 52OBJECTS += cgit.o
53OBJECTS += cmd.o 53OBJECTS += cmd.o
54OBJECTS += configfile.o 54OBJECTS += configfile.o
55OBJECTS += html.o 55OBJECTS += html.o
56OBJECTS += parsing.o 56OBJECTS += parsing.o
57OBJECTS += shared.o 57OBJECTS += shared.o
58OBJECTS += ui-blob.o 58OBJECTS += ui-blob.o
59OBJECTS += ui-clone.o
59OBJECTS += ui-commit.o 60OBJECTS += ui-commit.o
60OBJECTS += ui-diff.o 61OBJECTS += ui-diff.o
61OBJECTS += ui-log.o 62OBJECTS += ui-log.o
62OBJECTS += ui-patch.o 63OBJECTS += ui-patch.o
63OBJECTS += ui-refs.o 64OBJECTS += ui-refs.o
64OBJECTS += ui-repolist.o 65OBJECTS += ui-repolist.o
65OBJECTS += ui-shared.o 66OBJECTS += ui-shared.o
66OBJECTS += ui-snapshot.o 67OBJECTS += ui-snapshot.o
67OBJECTS += ui-summary.o 68OBJECTS += ui-summary.o
68OBJECTS += ui-tag.o 69OBJECTS += ui-tag.o
69OBJECTS += ui-tree.o 70OBJECTS += ui-tree.o
70 71
71ifdef NEEDS_LIBICONV 72ifdef NEEDS_LIBICONV
72 EXTLIBS += -liconv 73 EXTLIBS += -liconv
73endif 74endif
74 75
75 76
76.PHONY: all git test install uninstall clean force-version get-git 77.PHONY: all git test install uninstall clean force-version get-git
77 78
78all: cgit 79all: cgit
79 80
80VERSION: force-version 81VERSION: force-version
81 @./gen-version.sh "$(CGIT_VERSION)" 82 @./gen-version.sh "$(CGIT_VERSION)"
82-include VERSION 83-include VERSION
83 84
84 85
85CFLAGS += -g -Wall -Igit 86CFLAGS += -g -Wall -Igit
86CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' 87CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
87CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' 88CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
88CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 89CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
89CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 90CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
90CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 91CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
91 92
92 93
93cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a 94cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a
94 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 95 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
95 96
96cgit.o: VERSION 97cgit.o: VERSION
97 98
98-include $(OBJECTS:.o=.d) 99-include $(OBJECTS:.o=.d)
99 100
100git/libgit.a: git 101git/libgit.a: git
101 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a 102 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a
102 103
103git/xdiff/lib.a: git 104git/xdiff/lib.a: git
104 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a 105 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a
105 106
106test: all 107test: all