about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-12-13 14:39:41 +0100
committerLars Hjemli <hjemli@gmail.com>2006-12-13 14:39:41 +0100
commitc45b8178d0e042a668395541a28d59f907da150b (patch)
treeab4312d59cc8d9287a2287ca5389346170c3b608 /Makefile
parentRemove implementation details from README (diff)
downloadcgit-pink-c45b8178d0e042a668395541a28d59f907da150b.tar.gz
cgit-pink-c45b8178d0e042a668395541a28d59f907da150b.zip
Add separate makefile-rule to clear current cache
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4d2ede3..2a4d62a 100644
--- a/Makefile
+++ b/Makefile
@@ -12,10 +12,9 @@ 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 \
@@ -26,3 +25,6 @@ $(OBJECTS): cgit.h git.h
 .PHONY: clean
 clean:
 	rm -f cgit *.o
+
+clean-cache:
+	rm -rf $(CACHE_ROOT)/*