Makefile (view raw)
1CGIT_VERSION = v0.8.3.3
2CGIT_SCRIPT_NAME = cgit.cgi
3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH)
5CGIT_CONFIG = /etc/cgitrc
6CACHE_ROOT = /var/cache/cgit
7prefix = /usr
8libdir = $(prefix)/lib
9filterdir = $(libdir)/cgit/filters
10docdir = $(prefix)/share/doc/cgit
11htmldir = $(docdir)
12pdfdir = $(docdir)
13mandir = $(prefix)/share/man
14SHA1_HEADER = <openssl/sha.h>
15GIT_VER = 1.7.3
16GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
17INSTALL = install
18MAN5_TXT = $(wildcard *.5.txt)
19MAN_TXT = $(MAN5_TXT)
20DOC_MAN5 = $(patsubst %.txt,%,$(MAN5_TXT))
21DOC_HTML = $(patsubst %.txt,%.html,$(MAN_TXT))
22DOC_PDF = $(patsubst %.txt,%.pdf,$(MAN_TXT))
23
24# Define NO_STRCASESTR if you don't have strcasestr.
25#
26# Define NO_OPENSSL to disable linking with OpenSSL and use bundled SHA1
27# implementation (slower).
28#
29# Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin).
30#
31# Define NO_C99_FORMAT if your formatted IO functions (printf/scanf et.al.)
32# do not support the 'size specifiers' introduced by C99, namely ll, hh,
33# j, z, t. (representing long long int, char, intmax_t, size_t, ptrdiff_t).
34# some C compilers supported these specifiers prior to C99 as an extension.
35#
36
37#-include config.mak
38
39#
40# Platform specific tweaks
41#
42
43uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
44uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
45uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
46
47ifeq ($(uname_O),Cygwin)
48 NO_STRCASESTR = YesPlease
49 NEEDS_LIBICONV = YesPlease
50endif
51
52#
53# Let the user override the above settings.
54#
55-include cgit.conf
56
57#
58# Define a way to invoke make in subdirs quietly, shamelessly ripped
59# from git.git
60#
61QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
62QUIET_SUBDIR1 =
63
64ifneq ($(findstring $(MAKEFLAGS),w),w)
65PRINT_DIR = --no-print-directory
66else # "make -w"
67NO_SUBDIR = :
68endif
69
70ifndef V
71 QUIET_CC = @echo ' ' CC $@;
72 QUIET_MM = @echo ' ' MM $@;
73 QUIET_SUBDIR0 = +@subdir=
74 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
75 $(MAKE) $(PRINT_DIR) -C $$subdir
76endif
77
78#
79# Define a pattern rule for automatic dependency building
80#
81%.d: %.c
82 $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@
83
84#
85# Define a pattern rule for silent object building
86#
87%.o: %.c
88 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
89
90
91EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lpthread
92OBJECTS =
93OBJECTS += cache.o
94OBJECTS += cgit.o
95OBJECTS += cmd.o
96OBJECTS += configfile.o
97OBJECTS += html.o
98OBJECTS += parsing.o
99OBJECTS += scan-tree.o
100OBJECTS += shared.o
101OBJECTS += ui-atom.o
102OBJECTS += ui-blob.o
103OBJECTS += ui-clone.o
104OBJECTS += ui-commit.o
105OBJECTS += ui-diff.o
106OBJECTS += ui-log.o
107OBJECTS += ui-patch.o
108OBJECTS += ui-plain.o
109OBJECTS += ui-refs.o
110OBJECTS += ui-repolist.o
111OBJECTS += ui-shared.o
112OBJECTS += ui-snapshot.o
113OBJECTS += ui-ssdiff.o
114OBJECTS += ui-stats.o
115OBJECTS += ui-summary.o
116OBJECTS += ui-tag.o
117OBJECTS += ui-tree.o
118
119ifdef NEEDS_LIBICONV
120 EXTLIBS += -liconv
121endif
122
123
124.PHONY: all libgit test install uninstall clean force-version get-git \
125 doc clean-doc install-doc install-man install-html install-pdf \
126 uninstall-doc uninstall-man uninstall-html uninstall-pdf
127
128all: cgit
129
130VERSION: force-version
131 @./gen-version.sh "$(CGIT_VERSION)"
132-include VERSION
133
134
135CFLAGS += -g -Wall -Igit
136CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
137CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
138CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
139CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
140CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
141
142ifdef NO_ICONV
143 CFLAGS += -DNO_ICONV
144endif
145ifdef NO_STRCASESTR
146 CFLAGS += -DNO_STRCASESTR
147endif
148ifdef NO_C99_FORMAT
149 CFLAGS += -DNO_C99_FORMAT
150endif
151ifdef NO_OPENSSL
152 CFLAGS += -DNO_OPENSSL
153 GIT_OPTIONS += NO_OPENSSL=1
154else
155 EXTLIBS += -lcrypto
156endif
157
158cgit: $(OBJECTS) libgit
159 $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
160
161cgit.o: VERSION
162
163ifneq "$(MAKECMDGOALS)" "clean"
164 -include $(OBJECTS:.o=.d)
165endif
166
167libgit:
168 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) libgit.a
169 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) xdiff/lib.a
170
171test: all
172 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
173
174install: all
175 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH)
176 $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
177 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH)
178 $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
179 $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
180 $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir)
181 $(INSTALL) -m 0755 filters/* $(DESTDIR)$(filterdir)
182
183install-doc: install-man install-html install-pdf
184
185install-man: doc-man
186 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
187 $(INSTALL) -m 0644 $(DOC_MAN5) $(DESTDIR)$(mandir)/man5
188
189install-html: doc-html
190 $(INSTALL) -m 0755 -d $(DESTDIR)$(htmldir)
191 $(INSTALL) -m 0644 $(DOC_HTML) $(DESTDIR)$(htmldir)
192
193install-pdf: doc-pdf
194 $(INSTALL) -m 0755 -d $(DESTDIR)$(pdfdir)
195 $(INSTALL) -m 0644 $(DOC_PDF) $(DESTDIR)$(pdfdir)
196
197uninstall:
198 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
199 rm -f $(CGIT_DATA_PATH)/cgit.css
200 rm -f $(CGIT_DATA_PATH)/cgit.png
201
202uninstall-doc: uninstall-man uninstall-html uninstall-pdf
203
204uninstall-man:
205 @for i in $(DOC_MAN5); do \
206 rm -fv $(DESTDIR)$(mandir)/man5/$$i; \
207 done
208
209uninstall-html:
210 @for i in $(DOC_HTML); do \
211 rm -fv $(DESTDIR)$(htmldir)/$$i; \
212 done
213
214uninstall-pdf:
215 @for i in $(DOC_PDF); do \
216 rm -fv $(DESTDIR)$(pdfdir)/$$i; \
217 done
218
219doc: doc-man doc-html doc-pdf
220doc-man: doc-man5
221doc-man5: $(DOC_MAN5)
222doc-html: $(DOC_HTML)
223doc-pdf: $(DOC_PDF)
224
225%.5 : %.5.txt
226 a2x -f manpage $<
227
228$(DOC_HTML): %.html : %.txt
229 a2x -f xhtml --stylesheet=cgit-doc.css $<
230
231$(DOC_PDF): %.pdf : %.txt
232 a2x -f pdf cgitrc.5.txt
233
234clean: clean-doc
235 rm -f cgit VERSION *.o *.d
236
237clean-doc:
238 rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo
239
240get-git:
241 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git