]> gitweb.ps.run Git - ps-cgit/blobdiff - Makefile
Make repo header a link to summary page
[ps-cgit] / Makefile
index 4e72b07e70d5369b8f568421c2c77dc22f65c8b5..58a583b339463db275ec54b402c8092a5b8ff62c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,30 @@
+CGIT_VERSION = 0.1-pre
 
 INSTALL_BIN = /var/www/htdocs/cgit.cgi
 INSTALL_CSS = /var/www/htdocs/cgit.css
+CACHE_ROOT = /var/cache/cgit
 
 EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
-OBJECTS = cgit.o config.o html.o
+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
+
+CFLAGS += -Wall
 
 all: cgit
 
-install: all
+install: all clean-cache
        install cgit $(INSTALL_BIN)
        install cgit.css $(INSTALL_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
+
+.PHONY: clean
 clean:
        rm -f cgit *.o
 
-cgit: $(OBJECTS)
-       $(CC) -o cgit $(OBJECTS) $(EXTLIBS)
-
-$(OBJECTS): cgit.h git.h
+clean-cache:
+       rm -rf $(CACHE_ROOT)/*