Unidiff1 files changed, 3 insertions, 4 deletions
|
diff --git a/Makefile b/Makefile index a3e9b05..72a1cff 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,36 +1,35 @@ |
1 | CGIT_VERSION = 0.1 |
1 | CGIT_VERSION = 0.1 |
2 | |
2 | |
3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
3 | INSTALL_DIR = /var/www/htdocs/cgit |
4 | INSTALL_CSS = /var/www/htdocs/cgit.css |
| |
5 | CACHE_ROOT = /var/cache/cgit |
4 | CACHE_ROOT = /var/cache/cgit |
6 | |
5 | |
7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
6 | 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 \ |
7 | 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 |
8 | ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o |
10 | |
9 | |
11 | CFLAGS += -Wall |
10 | CFLAGS += -Wall |
12 | |
11 | |
13 | ifdef DEBUG |
12 | ifdef DEBUG |
14 | CFLAGS += -g |
13 | CFLAGS += -g |
15 | endif |
14 | endif |
16 | |
15 | |
17 | all: cgit |
16 | all: cgit |
18 | |
17 | |
19 | install: all clean-cache |
18 | install: all clean-cache |
20 | install cgit $(INSTALL_BIN) |
19 | install cgit $(INSTALL_DIR)/cgit.cgi |
21 | install cgit.css $(INSTALL_CSS) |
20 | install cgit.css $(INSTALL_DIR)/cgit.css |
22 | |
21 | |
23 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
22 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
24 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
23 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
25 | $(OBJECTS) $(EXTLIBS) |
24 | $(OBJECTS) $(EXTLIBS) |
26 | |
25 | |
27 | $(OBJECTS): cgit.h git.h |
26 | $(OBJECTS): cgit.h git.h |
28 | |
27 | |
29 | ui-diff.o: xdiff.h |
28 | ui-diff.o: xdiff.h |
30 | |
29 | |
31 | .PHONY: clean |
30 | .PHONY: clean |
32 | clean: |
31 | clean: |
33 | rm -f cgit *.o |
32 | rm -f cgit *.o |
34 | |
33 | |
35 | clean-cache: |
34 | clean-cache: |
36 | rm -rf $(CACHE_ROOT)/* |
35 | rm -rf $(CACHE_ROOT)/* |
|