diff options
author | Lars Hjemli | 2007-01-28 11:31:57 +0100 |
---|---|---|
committer | Lars Hjemli | 2007-01-28 11:31:57 +0100 |
commit | 4a9dea5c0104471324f01663420685e45fe3b480 (patch) | |
tree | eb68bfc960538f2d207a1b2736a550f56b6df38f | |
parent | Cleanup table listings (diff) | |
download | cgit-4a9dea5c0104471324f01663420685e45fe3b480.tar.gz cgit-4a9dea5c0104471324f01663420685e45fe3b480.zip |
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
diff --git a/Makefile b/Makefile index a3e9b05..72a1cff 100644 --- a/Makefile +++ b/Makefile | |||
@@ -1,7 +1,6 @@ | |||
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 |
@@ -17,8 +16,8 @@ endif | |||
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 \ |