1 CGIT_VERSION = v0.9.0.3
2 CGIT_SCRIPT_NAME = cgit.cgi
3 CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4 CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH)
5 CGIT_CONFIG = /etc/cgitrc
6 CACHE_ROOT = /var/cache/cgit
9 filterdir = $(libdir)/cgit/filters
10 docdir = $(prefix)/share/doc/cgit
13 mandir = $(prefix)/share/man
14 SHA1_HEADER = <openssl/sha.h>
16 GIT_URL = http://hjemli.net/git/git/snapshot/git-$(GIT_VER).tar.bz2
18 MAN5_TXT = $(wildcard *.5.txt)
20 DOC_MAN5 = $(patsubst %.txt,%,$(MAN5_TXT))
21 DOC_HTML = $(patsubst %.txt,%.html,$(MAN_TXT))
22 DOC_PDF = $(patsubst %.txt,%.pdf,$(MAN_TXT))
24 # Define NO_STRCASESTR if you don't have strcasestr.
26 # Define NO_OPENSSL to disable linking with OpenSSL and use bundled SHA1
27 # implementation (slower).
29 # Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin).
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.
40 # Platform specific tweaks
43 uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not')
44 uname_O := $(shell sh -c 'uname -o 2>/dev/null || echo not')
45 uname_R := $(shell sh -c 'uname -r 2>/dev/null || echo not')
47 ifeq ($(uname_O),Cygwin)
48 NO_STRCASESTR = YesPlease
49 NEEDS_LIBICONV = YesPlease
53 # Let the user override the above settings.
58 # Define a way to invoke make in subdirs quietly, shamelessly ripped
61 QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
64 ifneq ($(findstring $(MAKEFLAGS),w),w)
65 PRINT_DIR = --no-print-directory
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
76 QUIET_TAGS = @echo ' ' TAGS $@;
80 # Define a pattern rule for automatic dependency building
83 $(QUIET_MM)$(CC) $(CFLAGS) -MM -MP $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@
86 # Define a pattern rule for silent object building
89 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
92 EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lpthread
97 OBJECTS += configfile.o
100 OBJECTS += scan-tree.o
104 OBJECTS += ui-clone.o
105 OBJECTS += ui-commit.o
108 OBJECTS += ui-patch.o
109 OBJECTS += ui-plain.o
111 OBJECTS += ui-repolist.o
112 OBJECTS += ui-shared.o
113 OBJECTS += ui-snapshot.o
114 OBJECTS += ui-ssdiff.o
115 OBJECTS += ui-stats.o
116 OBJECTS += ui-summary.o
126 .PHONY: all libgit test install uninstall clean force-version get-git \
127 doc clean-doc install-doc install-man install-html install-pdf \
128 uninstall-doc uninstall-man uninstall-html uninstall-pdf tags
132 VERSION: force-version
133 @./gen-version.sh "$(CGIT_VERSION)"
137 CFLAGS += -g -Wall -Igit
138 CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
139 CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
140 CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
141 CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
142 CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
144 GIT_OPTIONS = prefix=/usr
150 CFLAGS += -DNO_STRCASESTR
153 CFLAGS += -DNO_C99_FORMAT
156 CFLAGS += -DNO_OPENSSL
157 GIT_OPTIONS += NO_OPENSSL=1
162 cgit: $(OBJECTS) libgit
163 $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
167 ifneq "$(MAKECMDGOALS)" "clean"
168 -include $(OBJECTS:.o=.d)
172 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) libgit.a
173 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 $(GIT_OPTIONS) xdiff/lib.a
176 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
179 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH)
180 $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
181 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH)
182 $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
183 $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
184 $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir)
185 $(INSTALL) -m 0755 filters/* $(DESTDIR)$(filterdir)
187 install-doc: install-man install-html install-pdf
190 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
191 $(INSTALL) -m 0644 $(DOC_MAN5) $(DESTDIR)$(mandir)/man5
193 install-html: doc-html
194 $(INSTALL) -m 0755 -d $(DESTDIR)$(htmldir)
195 $(INSTALL) -m 0644 $(DOC_HTML) $(DESTDIR)$(htmldir)
198 $(INSTALL) -m 0755 -d $(DESTDIR)$(pdfdir)
199 $(INSTALL) -m 0644 $(DOC_PDF) $(DESTDIR)$(pdfdir)
202 rm -f $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
203 rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
204 rm -f $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
206 uninstall-doc: uninstall-man uninstall-html uninstall-pdf
209 @for i in $(DOC_MAN5); do \
210 rm -fv $(DESTDIR)$(mandir)/man5/$$i; \
214 @for i in $(DOC_HTML); do \
215 rm -fv $(DESTDIR)$(htmldir)/$$i; \
219 @for i in $(DOC_PDF); do \
220 rm -fv $(DESTDIR)$(pdfdir)/$$i; \
223 doc: doc-man doc-html doc-pdf
225 doc-man5: $(DOC_MAN5)
226 doc-html: $(DOC_HTML)
232 $(DOC_HTML): %.html : %.txt
233 a2x -f xhtml --stylesheet=cgit-doc.css $<
235 $(DOC_PDF): %.pdf : %.txt
236 a2x -f pdf cgitrc.5.txt
239 rm -f cgit VERSION *.o *.d
242 rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo
245 curl $(GIT_URL) | tar -xjf - && rm -rf git && mv git-$(GIT_VER) git
248 $(QUIET_TAGS)find . -name '*.[ch]' | xargs ctags