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) (side-by-side diff) | |
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 @@ CGIT_VERSION = 0.1 -INSTALL_BIN = /var/www/htdocs/cgit.cgi -INSTALL_CSS = /var/www/htdocs/cgit.css +INSTALL_DIR = /var/www/htdocs/cgit CACHE_ROOT = /var/cache/cgit EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o CFLAGS += -Wall ifdef DEBUG CFLAGS += -g endif all: cgit install: all clean-cache - install cgit $(INSTALL_BIN) - install cgit.css $(INSTALL_CSS) + install cgit $(INSTALL_DIR)/cgit.cgi + install cgit.css $(INSTALL_DIR)/cgit.css cgit: cgit.c cgit.h git.h $(OBJECTS) $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ $(OBJECTS) $(EXTLIBS) $(OBJECTS): cgit.h git.h ui-diff.o: xdiff.h .PHONY: clean clean: rm -f cgit *.o clean-cache: rm -rf $(CACHE_ROOT)/* |