X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/06fe0c2f47eaf467db8ab1443e61dfa1c280f30a..7dd50c98d73bf6c579b8ce5893739a2d0ffc00d5:/Makefile diff --git a/Makefile b/Makefile index 4d2ede3..72a1cff 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,23 @@ -CGIT_VERSION = 0.1-pre +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-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 - install cgit $(INSTALL_BIN) - install cgit.css $(INSTALL_CSS) - rm -rf $(CACHE_ROOT)/* +install: all clean-cache + 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 \ @@ -23,6 +25,11 @@ cgit: cgit.c cgit.h git.h $(OBJECTS) $(OBJECTS): cgit.h git.h +ui-diff.o: xdiff.h + .PHONY: clean clean: rm -f cgit *.o + +clean-cache: + rm -rf $(CACHE_ROOT)/*