3 prefix = /var/www/htdocs/cgit
5 SHA1_HEADER = <openssl/sha.h>
7 CACHE_ROOT = /var/cache/cgit
8 EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
9 OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
10 ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \
11 ui-snapshot.o ui-blob.o
19 CFLAGS += -Igit -DSHA1_HEADER='$(SHA1_HEADER)'
23 # If make is run on a nongit platform, we need to get the git sources as a tarball.
24 # But there is currently no recent enough tarball available on kernel.org, so download
25 # a zipfile from hjemli.net instead
27 GITVER = $(shell git version 2>/dev/null || echo nogit)
28 ifeq ($(GITVER),nogit)
29 GITURL = http://hjemli.net/git/git/snapshot/?id=v1.5.2-rc2
30 INITGIT = test -e git/git.c || (curl "$(GITURL)" > tmp.zip && unzip tmp.zip)
32 INITGIT = ./submodules.sh -i
41 cgit: cgit.c cgit.h $(OBJECTS)
42 $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
45 $(OBJECTS): cgit.h git/libgit.a
54 install: all clean-cache
56 install cgit $(prefix)/cgit.cgi
57 install cgit.css $(prefix)/cgit.css
62 distclean-cgit: clean-cgit
68 distclean-sub: clean-sub
69 $(shell cd git && git clean -d -x)
72 rm -rf $(CACHE_ROOT)/*
74 clean: clean-cgit clean-sub
76 distclean: distclean-cgit distclean-sub
78 .PHONY: all install clean clean-cgit clean-sub clean-cache \
79 distclean distclean-cgit distclean-sub