all repos — cgit @ 58d04f6523b0029281d65f841859fa42d0c744ff

a hyperfast web frontend for git written in c

Makefile (view raw)

 1CGIT_VERSION = 0.1-pre
 2
 3INSTALL_BIN = /var/www/htdocs/cgit.cgi
 4INSTALL_CSS = /var/www/htdocs/cgit.css
 5CACHE_ROOT = /var/cache/cgit
 6
 7EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
 8OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
 9	ui-summary.o ui-log.o ui-view.c
10
11CFLAGS += -Wall
12
13all: cgit
14
15install: all
16	install cgit $(INSTALL_BIN)
17	install cgit.css $(INSTALL_CSS)
18	rm -rf $(CACHE_ROOT)/*
19
20cgit: cgit.c cgit.h git.h $(OBJECTS)
21	$(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
22		$(OBJECTS) $(EXTLIBS)
23
24$(OBJECTS): cgit.h git.h
25
26.PHONY: clean
27clean:
28	rm -f cgit *.o