X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/36aba00273e7af1b94bf8c5dd5068709d983d01e..8fb2f056961e577a039ae185d89ab8e2d2840b9e:/Makefile diff --git a/Makefile b/Makefile index 4aa7afe..72a1cff 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ -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 @@ -10,11 +9,15 @@ OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.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 \ @@ -22,6 +25,8 @@ 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