mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 10:08:42 +00:00
Add separate makefile-rule to clear current cache
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
dcef257d4f
commit
c45b8178d0
6
Makefile
6
Makefile
@ -12,10 +12,9 @@ CFLAGS += -Wall
|
|||||||
|
|
||||||
all: cgit
|
all: cgit
|
||||||
|
|
||||||
install: all
|
install: all clean-cache
|
||||||
install cgit $(INSTALL_BIN)
|
install cgit $(INSTALL_BIN)
|
||||||
install cgit.css $(INSTALL_CSS)
|
install cgit.css $(INSTALL_CSS)
|
||||||
rm -rf $(CACHE_ROOT)/*
|
|
||||||
|
|
||||||
cgit: cgit.c cgit.h git.h $(OBJECTS)
|
cgit: cgit.c cgit.h git.h $(OBJECTS)
|
||||||
$(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
|
$(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \
|
||||||
@ -26,3 +25,6 @@ $(OBJECTS): cgit.h git.h
|
|||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f cgit *.o
|
rm -f cgit *.o
|
||||||
|
|
||||||
|
clean-cache:
|
||||||
|
rm -rf $(CACHE_ROOT)/*
|
||||||
|
Loading…
Reference in New Issue
Block a user