blob: 1e341295f64fc916595ee82f1c41ca24754c1ef2 [file] [log] [blame]
Lars Hjemlie0327612012-03-18 10:16:27 +00001CGIT_VERSION = v0.9.0.3
Lars Hjemliea2831f2007-05-15 00:48:31 +02002CGIT_SCRIPT_NAME = cgit.cgi
Lars Hjemlie8920b52007-09-03 21:52:14 +02003CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
Todd Zullingerd529c6f2009-01-11 18:23:59 -05004CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH)
Lars Hjemlie8920b52007-09-03 21:52:14 +02005CGIT_CONFIG = /etc/cgitrc
6CACHE_ROOT = /var/cache/cgit
Todd Zullinger0c3130d2010-09-06 09:31:23 -04007prefix = /usr
Todd Zullinger6d10c132010-09-06 09:31:24 -04008libdir = $(prefix)/lib
9filterdir = $(libdir)/cgit/filters
Todd Zullinger0c3130d2010-09-06 09:31:23 -040010docdir = $(prefix)/share/doc/cgit
11htmldir = $(docdir)
12pdfdir = $(docdir)
13mandir = $(prefix)/share/man
Lars Hjemlie8920b52007-09-03 21:52:14 +020014SHA1_HEADER = <openssl/sha.h>
Lars Hjemli286c4c02011-02-19 13:55:43 +010015GIT_VER = 1.7.4
Lars Hjemlifbd254d2012-01-03 16:43:33 +000016GIT_URL = http://hjemli.net/git/git/snapshot/git-$(GIT_VER).tar.bz2
Todd Zullinger4ac89ec2009-01-11 18:23:52 -050017INSTALL = install
Todd Zullinger679f7ef2010-09-06 09:31:22 -040018MAN5_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))
Lars Hjemli9ecde652007-05-14 23:09:49 +020023
Ramsay Jones97fdac12008-11-15 18:26:32 +000024# Define NO_STRCASESTR if you don't have strcasestr.
25#
Mikhail Gusarov59310ab2009-10-29 03:39:55 +060026# Define NO_OPENSSL to disable linking with OpenSSL and use bundled SHA1
27# implementation (slower).
28#
Ramsay Jones97fdac12008-11-15 18:26:32 +000029# Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin).
30#
Mark Lodatoe4ddc8f2010-09-04 11:30:18 -040031# 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#
Ramsay Jones97fdac12008-11-15 18:26:32 +000036
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
Lars Hjemlic60781d2008-03-25 01:41:10 +010052#
Lars Hjemlia5e899e2008-12-05 18:47:16 +010053# Let the user override the above settings.
54#
55-include cgit.conf
56
57#
Lars Hjemlic60781d2008-03-25 01:41:10 +010058# 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
Jamie Couture6419c9b2012-10-08 13:12:17 -040076 QUIET_TAGS = @echo ' ' TAGS $@;
Lars Hjemlic60781d2008-03-25 01:41:10 +010077endif
Lars Hjemlif6925032007-06-18 09:42:10 +020078
Lars Hjemlidf90b512008-03-24 23:01:44 +010079#
80# Define a pattern rule for automatic dependency building
81#
82%.d: %.c
Lars Hjemli5807fb72010-11-07 16:13:49 +010083 $(QUIET_MM)$(CC) $(CFLAGS) -MM -MP $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@
Lars Hjemlic60781d2008-03-25 01:41:10 +010084
85#
86# Define a pattern rule for silent object building
87#
88%.o: %.c
89 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
Lars Hjemlidf90b512008-03-24 23:01:44 +010090
Lars Hjemlif6925032007-06-18 09:42:10 +020091
Lars Hjemli6d7552b2010-08-22 13:29:57 +020092EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lpthread
Lars Hjemli27181862008-03-24 20:49:41 +010093OBJECTS =
94OBJECTS += cache.o
95OBJECTS += cgit.o
96OBJECTS += cmd.o
Lars Hjemli20a33542008-03-28 00:09:11 +010097OBJECTS += configfile.o
Lars Hjemli27181862008-03-24 20:49:41 +010098OBJECTS += html.o
99OBJECTS += parsing.o
Lars Hjemli93397a72008-09-15 00:07:12 +0200100OBJECTS += scan-tree.o
Lars Hjemli27181862008-03-24 20:49:41 +0100101OBJECTS += shared.o
Lars Hjemlib2a3d312008-05-21 08:17:54 +0200102OBJECTS += ui-atom.o
Lars Hjemli27181862008-03-24 20:49:41 +0100103OBJECTS += ui-blob.o
Lars Hjemli02a545e2008-08-06 01:20:24 +0200104OBJECTS += ui-clone.o
Lars Hjemli27181862008-03-24 20:49:41 +0100105OBJECTS += ui-commit.o
106OBJECTS += ui-diff.o
107OBJECTS += ui-log.o
108OBJECTS += ui-patch.o
Lars Hjemlie5da4bc2008-08-06 10:53:50 +0200109OBJECTS += ui-plain.o
Lars Hjemli27181862008-03-24 20:49:41 +0100110OBJECTS += ui-refs.o
111OBJECTS += ui-repolist.o
112OBJECTS += ui-shared.o
113OBJECTS += ui-snapshot.o
Ragnar Ouchterlony40e174d2009-09-13 19:36:35 +0200114OBJECTS += ui-ssdiff.o
Lars Hjemlif86a23f2008-12-06 17:38:19 +0100115OBJECTS += ui-stats.o
Lars Hjemli27181862008-03-24 20:49:41 +0100116OBJECTS += ui-summary.o
117OBJECTS += ui-tag.o
118OBJECTS += ui-tree.o
Lars Hjemli958a95b2010-11-09 19:57:18 +0100119OBJECTS += vector.o
Lars Hjemli0d169ad2006-12-09 15:18:17 +0100120
Lars Hjemli1ae41a02007-11-06 09:35:07 +0100121ifdef NEEDS_LIBICONV
122 EXTLIBS += -liconv
123endif
124
125
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100126.PHONY: all libgit test install uninstall clean force-version get-git \
Todd Zullinger0c3130d2010-09-06 09:31:23 -0400127 doc clean-doc install-doc install-man install-html install-pdf \
Jamie Couture6419c9b2012-10-08 13:12:17 -0400128 uninstall-doc uninstall-man uninstall-html uninstall-pdf tags
Lars Hjemli447025f2007-01-17 01:13:05 +0100129
Lars Hjemlibb7485e2008-07-22 19:30:06 +0200130all: cgit
Lars Hjemlie8920b52007-09-03 21:52:14 +0200131
132VERSION: force-version
133 @./gen-version.sh "$(CGIT_VERSION)"
134-include VERSION
135
136
137CFLAGS += -g -Wall -Igit
Lars Hjemli9ecde652007-05-14 23:09:49 +0200138CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
139CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
Lars Hjemli152c5e22007-09-08 18:38:10 +0200140CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
Lars Hjemliea2831f2007-05-15 00:48:31 +0200141CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
Lars Hjemli152c5e22007-09-08 18:38:10 +0200142CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
Lars Hjemli61c3ca92007-05-08 22:40:59 +0200143
Lars Hjemli53f487d2010-11-09 18:08:38 +0100144GIT_OPTIONS = prefix=/usr
145
Lars Hjemliefaccb32008-10-11 20:21:06 +0200146ifdef NO_ICONV
147 CFLAGS += -DNO_ICONV
148endif
Ramsay Jones97fdac12008-11-15 18:26:32 +0000149ifdef NO_STRCASESTR
150 CFLAGS += -DNO_STRCASESTR
151endif
Mark Lodatoe4ddc8f2010-09-04 11:30:18 -0400152ifdef NO_C99_FORMAT
153 CFLAGS += -DNO_C99_FORMAT
154endif
Mikhail Gusarov59310ab2009-10-29 03:39:55 +0600155ifdef NO_OPENSSL
156 CFLAGS += -DNO_OPENSSL
157 GIT_OPTIONS += NO_OPENSSL=1
158else
159 EXTLIBS += -lcrypto
160endif
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200161
Lars Hjemli8c2a1362008-08-06 18:52:27 +0200162cgit: $(OBJECTS) libgit
Harley Laue06e14dc2008-09-18 21:06:18 -0500163 $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200164
Lars Hjemli92908af2008-03-24 23:10:59 +0100165cgit.o: VERSION
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200166
Lynn Linab610292010-07-15 14:38:06 +0800167ifneq "$(MAKECMDGOALS)" "clean"
168 -include $(OBJECTS:.o=.d)
169endif
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200170
Lars Hjemli8c2a1362008-08-06 18:52:27 +0200171libgit:
Mikhail Gusarov59310ab2009-10-29 03:39:55 +0600172 $(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
Lars Hjemlia1266ed2008-08-01 01:25:51 +0200174
Lars Hjemlib4649fc2007-11-11 00:40:58 +0100175test: all
Lars Hjemlic60781d2008-03-25 01:41:10 +0100176 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
Lars Hjemlib4649fc2007-11-11 00:40:58 +0100177
Lars Hjemlie8920b52007-09-03 21:52:14 +0200178install: all
Todd Zullinger4ac89ec2009-01-11 18:23:52 -0500179 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH)
180 $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
Todd Zullingerd529c6f2009-01-11 18:23:59 -0500181 $(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
Todd Zullinger6d10c132010-09-06 09:31:24 -0400184 $(INSTALL) -m 0755 -d $(DESTDIR)$(filterdir)
185 $(INSTALL) -m 0755 filters/* $(DESTDIR)$(filterdir)
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200186
Todd Zullinger0c3130d2010-09-06 09:31:23 -0400187install-doc: install-man install-html install-pdf
188
189install-man: doc-man
190 $(INSTALL) -m 0755 -d $(DESTDIR)$(mandir)/man5
191 $(INSTALL) -m 0644 $(DOC_MAN5) $(DESTDIR)$(mandir)/man5
192
193install-html: doc-html
194 $(INSTALL) -m 0755 -d $(DESTDIR)$(htmldir)
195 $(INSTALL) -m 0644 $(DOC_HTML) $(DESTDIR)$(htmldir)
196
197install-pdf: doc-pdf
198 $(INSTALL) -m 0755 -d $(DESTDIR)$(pdfdir)
199 $(INSTALL) -m 0644 $(DOC_PDF) $(DESTDIR)$(pdfdir)
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200200
Lars Hjemlie8920b52007-09-03 21:52:14 +0200201uninstall:
Ferry Huberts96f05012011-07-18 12:45:56 +0200202 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
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200205
Todd Zullinger0c3130d2010-09-06 09:31:23 -0400206uninstall-doc: uninstall-man uninstall-html uninstall-pdf
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100207
Todd Zullinger0c3130d2010-09-06 09:31:23 -0400208uninstall-man:
209 @for i in $(DOC_MAN5); do \
210 rm -fv $(DESTDIR)$(mandir)/man5/$$i; \
211 done
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100212
Todd Zullinger0c3130d2010-09-06 09:31:23 -0400213uninstall-html:
214 @for i in $(DOC_HTML); do \
215 rm -fv $(DESTDIR)$(htmldir)/$$i; \
216 done
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100217
Todd Zullinger0c3130d2010-09-06 09:31:23 -0400218uninstall-pdf:
219 @for i in $(DOC_PDF); do \
220 rm -fv $(DESTDIR)$(pdfdir)/$$i; \
221 done
222
Todd Zullinger679f7ef2010-09-06 09:31:22 -0400223doc: doc-man doc-html doc-pdf
224doc-man: doc-man5
225doc-man5: $(DOC_MAN5)
226doc-html: $(DOC_HTML)
227doc-pdf: $(DOC_PDF)
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100228
Todd Zullinger679f7ef2010-09-06 09:31:22 -0400229%.5 : %.5.txt
230 a2x -f manpage $<
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100231
Todd Zullinger679f7ef2010-09-06 09:31:22 -0400232$(DOC_HTML): %.html : %.txt
233 a2x -f xhtml --stylesheet=cgit-doc.css $<
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100234
Todd Zullinger679f7ef2010-09-06 09:31:22 -0400235$(DOC_PDF): %.pdf : %.txt
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100236 a2x -f pdf cgitrc.5.txt
237
238clean: clean-doc
Lars Hjemlidf90b512008-03-24 23:01:44 +0100239 rm -f cgit VERSION *.o *.d
Lars Hjemlicc1dbd12007-05-10 11:25:12 +0200240
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100241clean-doc:
Lars Hjemli290c2a72009-03-15 09:27:54 +0100242 rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo
Lars Hjemli5e57cb22009-02-12 10:53:31 +0100243
Lars Hjemli95eaf272007-09-03 22:42:54 +0200244get-git:
Lukas Fleischer7c2dea02011-01-19 14:05:48 +0100245 curl $(GIT_URL) | tar -xjf - && rm -rf git && mv git-$(GIT_VER) git
Jamie Couture6419c9b2012-10-08 13:12:17 -0400246
247tags:
248 $(QUIET_TAGS)find . -name '*.[ch]' | xargs ctags