aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 243f590..4e72b07 100644
--- a/Makefile
+++ b/Makefile
@@ -3,9 +3,7 @@ INSTALL_BIN = /var/www/htdocs/cgit.cgi
INSTALL_CSS = /var/www/htdocs/cgit.css
EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto
-OBJECTS = cgit.o config.o html.o cache.o
-
-CFLAGS += -Wall
+OBJECTS = cgit.o config.o html.o
all: cgit
@@ -17,6 +15,6 @@ clean:
rm -f cgit *.o
cgit: $(OBJECTS)
- $(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
+ $(CC) -o cgit $(OBJECTS) $(EXTLIBS)
$(OBJECTS): cgit.h git.h