Unified install path
authorLars Hjemli <larsh@slaptop.hjemli.net>
Sun, 28 Jan 2007 10:31:57 +0000 (11:31 +0100)
committerLars Hjemli <larsh@slaptop.hjemli.net>
Sun, 28 Jan 2007 10:31:57 +0000 (11:31 +0100)
Install all files into single directory

Signed-off-by: Lars Hjemli <larsh@slaptop.hjemli.net>
Makefile

index a3e9b053e6d38bf1cde875cb11e2184a7e6cf21f..72a1cfff02c6b83c59fbbca42ace5c266a7cc640 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,6 @@
 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
@@ -17,8 +16,8 @@ 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 \