summaryrefslogtreecommitdiffabout
path: root/Makefile
Unidiff
Diffstat (limited to 'Makefile') (more/less context) (show whitespace changes)
-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
12 12
13all: cgit 13all: cgit
14 14
15install: all 15install: 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
20cgit: cgit.c cgit.h git.h $(OBJECTS) 19cgit: cgit.c cgit.h git.h $(OBJECTS)
21 $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ 20 $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
@@ -26,3 +25,6 @@ $(OBJECTS): cgit.h git.h
26.PHONY: clean 25.PHONY: clean
27clean: 26clean:
28 rm -f cgit *.o 27 rm -f cgit *.o
28
29clean-cache:
30 rm -rf $(CACHE_ROOT)/*