Unidiff1 files changed, 2 insertions, 0 deletions
|
diff --git a/Makefile b/Makefile index 4aa7afe..52e1cb7 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,30 +1,32 @@ |
1 | CGIT_VERSION = 0.1-pre |
1 | CGIT_VERSION = 0.1-pre |
2 | |
2 | |
3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
4 | INSTALL_CSS = /var/www/htdocs/cgit.css |
4 | INSTALL_CSS = /var/www/htdocs/cgit.css |
5 | CACHE_ROOT = /var/cache/cgit |
5 | CACHE_ROOT = /var/cache/cgit |
6 | |
6 | |
7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
8 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
8 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
9 | ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o |
9 | ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o |
10 | |
10 | |
11 | CFLAGS += -Wall |
11 | CFLAGS += -Wall |
12 | |
12 | |
13 | all: cgit |
13 | all: cgit |
14 | |
14 | |
15 | install: all clean-cache |
15 | install: all clean-cache |
16 | install cgit $(INSTALL_BIN) |
16 | install cgit $(INSTALL_BIN) |
17 | install cgit.css $(INSTALL_CSS) |
17 | install cgit.css $(INSTALL_CSS) |
18 | |
18 | |
19 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
19 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
20 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
20 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
21 | $(OBJECTS) $(EXTLIBS) |
21 | $(OBJECTS) $(EXTLIBS) |
22 | |
22 | |
23 | $(OBJECTS): cgit.h git.h |
23 | $(OBJECTS): cgit.h git.h |
24 | |
24 | |
| |
25 | ui-diff.o: xdiff.h |
| |
26 | |
25 | .PHONY: clean |
27 | .PHONY: clean |
26 | clean: |
28 | clean: |
27 | rm -f cgit *.o |
29 | rm -f cgit *.o |
28 | |
30 | |
29 | clean-cache: |
31 | clean-cache: |
30 | rm -rf $(CACHE_ROOT)/* |
32 | rm -rf $(CACHE_ROOT)/* |
|