Unidiff1 files changed, 4 insertions, 2 deletions
|
diff --git a/Makefile b/Makefile index 4d2ede3..2a4d62a 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -13,8 +13,7 @@ CFLAGS += -Wall |
13 | all: cgit |
13 | all: cgit |
14 | |
14 | |
15 | install: all |
15 | install: all clean-cache |
16 | install cgit $(INSTALL_BIN) |
16 | install cgit $(INSTALL_BIN) |
17 | install cgit.css $(INSTALL_CSS) |
17 | install cgit.css $(INSTALL_CSS) |
18 | rm -rf $(CACHE_ROOT)/* |
| |
19 | |
18 | |
20 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
19 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
@@ -27,2 +26,5 @@ $(OBJECTS): cgit.h git.h |
27 | clean: |
26 | clean: |
28 | rm -f cgit *.o |
27 | rm -f cgit *.o |
| |
28 | |
| |
29 | clean-cache: |
| |
30 | rm -rf $(CACHE_ROOT)/* |
|