]> git.cameronkatri.com Git - cgit.git/blobdiff - Makefile
Only show first 80 characters of commit subject in log and summary
[cgit.git] / Makefile
index 71ddc400ac26dc5851346f93944044111298a17c..c290c6f5672ab33b22ffc282188ec0b34dc707d9 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,20 @@
-CGIT_VERSION = 0.1-pre
+CGIT_VERSION = 0.1
 
 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 = cache.o parsing.o html.o ui-shared.o ui-repolist.o ui-summary.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 ui-diff.o
 
 CFLAGS += -Wall
 
 all: cgit
 
-install: all
+install: all clean-cache
        install cgit $(INSTALL_BIN)
        install cgit.css $(INSTALL_CSS)
-       rm -rf $(CACHE_ROOT)/*
 
 cgit: cgit.c cgit.h git.h $(OBJECTS)
        $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
@@ -22,6 +22,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)/*