all repos — cgit @ 25105d7ecaba474d4b7c364ebb586aac3dfc5abb

a hyperfast web frontend for git written in c

Makefile (view raw)

 1
 2INSTALL_BIN = /var/www/htdocs/cgit.cgi
 3INSTALL_CSS = /var/www/htdocs/cgit.css
 4
 5EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
 6OBJECTS = cgit.o config.o html.o cache.o
 7
 8CFLAGS += -Wall
 9
10all: cgit
11
12install: all
13	install cgit $(INSTALL_BIN)
14	install cgit.css $(INSTALL_CSS)
15
16clean:
17	rm -f cgit *.o
18
19cgit: $(OBJECTS)
20	$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
21
22$(OBJECTS): cgit.h git.h