cgit

commit c45b8178d0e042a668395541a28d59f907da150b

Author: Lars Hjemli <hjemli@gmail.com>

Add separate makefile-rule to clear current cache

Signed-off-by: Lars Hjemli <hjemli@gmail.com>

 Makefile | 6 ++++--


diff --git a/Makefile b/Makefile
index 4d2ede3d49391e61fd6b7105ffbc833239ecc689..2a4d62a4b1d9463b500be3b9c3d263479efd476c 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 @@
 .PHONY: clean
 clean:
 	rm -f cgit *.o
+
+clean-cache:
+	rm -rf $(CACHE_ROOT)/*