]> git.cameronkatri.com Git - cgit.git/blobdiff - Makefile
cache_lock: do xstrdup/free on lockfile
[cgit.git] / Makefile
index 1470c0a2c0fe71965a8fa8eef0c9536b97bd8259..c02963718f28bf5782379f76d9078a21e563d172 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,24 +1,28 @@
+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
+
+CFLAGS += -Wall
 
 all: cgit
 
 install: all
        install cgit $(INSTALL_BIN)
        install cgit.css $(INSTALL_CSS)
+       rm -rf $(CACHE_ROOT)/*
 
-clean:
-       rm -f cgit *.o
-
-cgit: $(OBJECTS)
-       $(CC) -o cgit $(OBJECTS) $(EXTLIBS)
+cgit: cgit.c cgit.h git.h $(OBJECTS)
+       $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
+               $(OBJECTS) $(EXTLIBS)
 
-cgit.o: cgit.h git.h config.o html.o
+$(OBJECTS): cgit.h git.h
 
-config.o: cgit.h git.h html.c
-
-html.o: cgit.h git.h html.c
+.PHONY: clean
+clean:
+       rm -f cgit *.o