]> git.cameronkatri.com Git - cgit.git/blob - Makefile
Merge branch 'stable'
[cgit.git] / Makefile
1 CGIT_VERSION = v0.7.1
2 CGIT_SCRIPT_NAME = cgit.cgi
3 CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4 CGIT_CONFIG = /etc/cgitrc
5 CACHE_ROOT = /var/cache/cgit
6 SHA1_HEADER = <openssl/sha.h>
7 GIT_VER = 1.5.3.5
8 GIT_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 EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
17 OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
18 ui-summary.o ui-log.o ui-tree.o ui-commit.o ui-diff.o \
19 ui-snapshot.o ui-blob.o ui-tag.o ui-refs.o
20
21
22 ifdef NEEDS_LIBICONV
23 EXTLIBS += -liconv
24 endif
25
26
27 .PHONY: all git test install clean distclean emptycache force-version get-git
28
29 all: cgit git
30
31 VERSION: force-version
32 @./gen-version.sh "$(CGIT_VERSION)"
33 -include VERSION
34
35
36 CFLAGS += -g -Wall -Igit
37 CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
38 CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
39 CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
40 CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
41 CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
42
43
44 cgit: cgit.c $(OBJECTS)
45 $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS)
46
47 $(OBJECTS): cgit.h git/xdiff/lib.a git/libgit.a VERSION
48
49 git/xdiff/lib.a: | git
50
51 git/libgit.a: | git
52
53 git:
54 cd git && $(MAKE) xdiff/lib.a
55 cd git && $(MAKE) libgit.a
56
57 test: all
58 $(MAKE) -C tests
59
60 install: all
61 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
62 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
63 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
64 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
65
66 uninstall:
67 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
68 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
69 rm -f $(CGIT_SCRIPT_PATH)/cgit.png
70
71 clean:
72 rm -f cgit VERSION *.o
73 cd git && $(MAKE) clean
74
75 distclean: clean
76 git clean -d -x
77 cd git && git clean -d -x
78
79 emptycache:
80 rm -rf $(DESTDIR)$(CACHE_ROOT)/*
81
82 get-git:
83 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git