summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLars Hjemli2006-12-11 11:23:05 +0100
committerLars Hjemli2006-12-11 11:23:05 +0100
commita581ed8d6c15b0734b082fbadf0a907c2b170423 (patch)
tree4d0e9084aaa15b7c516a0fe36dfe5b23898f23ba
parentf5069d88dff7a7ed2f4665904b03e906cca75a7c (diff)
downloadcgit-a581ed8d6c15b0734b082fbadf0a907c2b170423.tar
cgit-a581ed8d6c15b0734b082fbadf0a907c2b170423.tar.gz
cgit-a581ed8d6c15b0734b082fbadf0a907c2b170423.zip
Let 'make install' clear all cachefiles
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 21e2eb3..c71e39c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ CGIT_VERSION = 0.1-pre
INSTALL_BIN = /var/www/htdocs/cgit.cgi
INSTALL_CSS = /var/www/htdocs/cgit.css
+CACHE_ROOT = /var/cache/cgit
EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
OBJECTS = config.o html.o cache.o
@@ -13,6 +14,7 @@ all: cgit
install: all
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 $(OBJECTS) $(EXTLIBS)
a id='n149' href='#n149'>149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229