all repos — cgit @ 10ac7ad1f30f914dc5ff36ba3651ef6dca11aaf7

a hyperfast web frontend for git written in c

Makefile (view raw)

 1CGIT_VERSION = v0.6.3
 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.3.3
 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
20
21
22.PHONY: all git install clean distclean force-version get-git
23
24all: cgit git
25
26VERSION: force-version
27	@./gen-version.sh "$(CGIT_VERSION)"
28-include VERSION
29
30
31CFLAGS += -g -Wall -Igit
32CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
33CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
34CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
35CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
36CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
37
38
39cgit: cgit.c $(OBJECTS)
40	$(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS)
41
42$(OBJECTS): cgit.h git/xdiff/lib.a git/libgit.a VERSION
43
44git/xdiff/lib.a: | git
45
46git/libgit.a: | git
47
48git:
49	cd git && $(MAKE) xdiff/lib.a
50	cd git && $(MAKE) libgit.a
51
52install: all
53	mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
54	install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
55	install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
56	rm -rf $(DESTDIR)$(CACHE_ROOT)/*
57
58uninstall:
59	rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
60	rm -f $(CGIT_SCRIPT_PATH)/cgit.css
61	rm -rf $(CACHE_ROOT)
62
63clean:
64	rm -f cgit VERSION *.o
65	cd git && $(MAKE) clean
66
67distclean: clean
68	git clean -d -x
69	cd git && git clean -d -x
70
71get-git:
72	curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git