Makefile (view raw)
1CGIT_VERSION = v0.7.2
2CGIT_SCRIPT_NAME = cgit.cgi
3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4CGIT_CONFIG = /etc/cgitrc
5CACHE_ROOT = /var/cache/cgit
6SHA1_HEADER = <openssl/sha.h>
7GIT_VER = 1.5.6
8GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
9
10#
11# Let the user override the above settings.
12#
13-include cgit.conf
14
15#
16# Define a way to invoke make in subdirs quietly, shamelessly ripped
17# from git.git
18#
19QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
20QUIET_SUBDIR1 =
21
22ifneq ($(findstring $(MAKEFLAGS),w),w)
23PRINT_DIR = --no-print-directory
24else # "make -w"
25NO_SUBDIR = :
26endif
27
28ifndef V
29 QUIET_CC = @echo ' ' CC $@;
30 QUIET_MM = @echo ' ' MM $@;
31 QUIET_SUBDIR0 = +@subdir=
32 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
33 $(MAKE) $(PRINT_DIR) -C $$subdir
34endif
35
36#
37# Define a pattern rule for automatic dependency building
38#
39%.d: %.c
40 $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@
41
42#
43# Define a pattern rule for silent object building
44#
45%.o: %.c
46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
47
48
49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
50OBJECTS =
51OBJECTS += cache.o
52OBJECTS += cgit.o
53OBJECTS += cmd.o
54OBJECTS += configfile.o
55OBJECTS += html.o
56OBJECTS += parsing.o
57OBJECTS += shared.o
58OBJECTS += ui-atom.o
59OBJECTS += ui-blob.o
60OBJECTS += ui-commit.o
61OBJECTS += ui-diff.o
62OBJECTS += ui-log.o
63OBJECTS += ui-patch.o
64OBJECTS += ui-refs.o
65OBJECTS += ui-repolist.o
66OBJECTS += ui-shared.o
67OBJECTS += ui-snapshot.o
68OBJECTS += ui-summary.o
69OBJECTS += ui-tag.o
70OBJECTS += ui-tree.o
71
72ifdef NEEDS_LIBICONV
73 EXTLIBS += -liconv
74endif
75
76
77.PHONY: all git test install uninstall clean force-version get-git
78
79all: cgit
80
81VERSION: force-version
82 @./gen-version.sh "$(CGIT_VERSION)"
83-include VERSION
84
85
86CFLAGS += -g -Wall -Igit
87CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
88CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
89CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
90CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
91CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
92
93
94cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a
95 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
96
97cgit.o: VERSION
98
99-include $(OBJECTS:.o=.d)
100
101git/libgit.a: git
102 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a
103
104git/xdiff/lib.a: git
105 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a
106
107test: all
108 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
109
110install: all
111 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
112 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
113 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
114 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
115
116uninstall:
117 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
118 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
119 rm -f $(CGIT_SCRIPT_PATH)/cgit.png
120
121clean:
122 rm -f cgit VERSION *.o *.d
123
124get-git:
125 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git