Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 |