all repos — cgit @ c45b8178d0e042a668395541a28d59f907da150b

a hyperfast web frontend for git written in c

Add separate makefile-rule to clear current cache

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Lars Hjemli hjemli@gmail.com
Wed, 13 Dec 2006 14:39:41 +0100
commit

c45b8178d0e042a668395541a28d59f907da150b

parent

dcef257d4fdbb2e0ff645bf0524cfca652e65ff0

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M MakefileMakefile

@@ -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)/*