all repos — cgit @ e5ed227ef0da561e2bde8646ec816842392377ee

a hyperfast web frontend for git written in c

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.4.1
 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
16EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
17OBJECTS = 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 ui-patch.o
20
21
22ifdef NEEDS_LIBICONV
23	EXTLIBS += -liconv
24endif
25
26
27.PHONY: all git test install clean distclean emptycache force-version get-git
28
29all: cgit git
30
31VERSION: force-version
32	@./gen-version.sh "$(CGIT_VERSION)"
33-include VERSION
34
35
36CFLAGS += -g -Wall -Igit
37CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
38CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
39CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
40CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
41CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
42
43
44cgit: 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
49git/xdiff/lib.a: | git
50
51git/libgit.a: | git
52
53git:
54	cd git && $(MAKE) xdiff/lib.a
55	cd git && $(MAKE) libgit.a
56
57test: all
58	$(MAKE) -C tests
59
60install: 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
66uninstall:
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
71clean:
72	rm -f cgit VERSION *.o
73	cd git && $(MAKE) clean
74
75distclean: clean
76	git clean -d -x
77	cd git && git clean -d -x
78
79emptycache:
80	rm -rf $(DESTDIR)$(CACHE_ROOT)/*
81
82get-git:
83	curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git