author | Lars Hjemli <larsh@slaptop.hjemli.net> | 2007-01-28 10:31:57 (UTC) |
---|---|---|
committer | Lars Hjemli <larsh@slaptop.hjemli.net> | 2007-01-28 10:31:57 (UTC) |
commit | 4a9dea5c0104471324f01663420685e45fe3b480 (patch) (unidiff) | |
tree | eb68bfc960538f2d207a1b2736a550f56b6df38f | |
parent | 777faf7e509e1de2b795b2a326ff00c9bd799104 (diff) | |
download | cgit-4a9dea5c0104471324f01663420685e45fe3b480.zip cgit-4a9dea5c0104471324f01663420685e45fe3b480.tar.gz cgit-4a9dea5c0104471324f01663420685e45fe3b480.tar.bz2 |
Unified install path
Install all files into single directory
Signed-off-by: Lars Hjemli <larsh@slaptop.hjemli.net>
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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)/* |