diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,9 +1,10 @@ | |||
1 | CGIT_VERSION = 0.1-pre | ||
1 | 2 | ||
2 | INSTALL_BIN = /var/www/htdocs/cgit.cgi | 3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
3 | INSTALL_CSS = /var/www/htdocs/cgit.css | 4 | INSTALL_CSS = /var/www/htdocs/cgit.css |
4 | 5 | ||
5 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto | 6 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
6 | OBJECTS = cgit.o config.o html.o cache.o | 7 | OBJECTS = config.o html.o cache.o |
7 | 8 | ||
8 | CFLAGS += -Wall | 9 | CFLAGS += -Wall |
9 | 10 | ||
@@ -13,10 +14,11 @@ install: all | |||
13 | install cgit $(INSTALL_BIN) | 14 | install cgit $(INSTALL_BIN) |
14 | install cgit.css $(INSTALL_CSS) | 15 | install cgit.css $(INSTALL_CSS) |
15 | 16 | ||
16 | clean: | 17 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
17 | rm -f cgit *.o | 18 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit $(OBJECTS) $(EXTLIBS) |
18 | |||
19 | cgit: $(OBJECTS) | ||
20 | $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | ||
21 | 19 | ||
22 | $(OBJECTS): cgit.h git.h | 20 | $(OBJECTS): cgit.h git.h |
21 | |||
22 | .PHONY: clean | ||
23 | clean: | ||
24 | rm -f cgit *.o | ||