author | Lars Hjemli <hjemli@gmail.com> | 2006-12-11 16:04:19 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-11 16:04:19 (UTC) |
commit | d14c5f6d3ac827e7b46831c4151638ab4b638ae1 (patch) (side-by-side diff) | |
tree | d6592747d098d2fb2ca7a0e653984256ac9ac1a5 /Makefile | |
parent | 1418034e642fee67c981b31e4c3eb6e8ae14e303 (diff) | |
download | cgit-d14c5f6d3ac827e7b46831c4151638ab4b638ae1.zip cgit-d14c5f6d3ac827e7b46831c4151638ab4b638ae1.tar.gz cgit-d14c5f6d3ac827e7b46831c4151638ab4b638ae1.tar.bz2 |
Move log-functions into ui-log.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,27 +1,28 @@ 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 = cache.o parsing.o html.o ui-shared.o ui-repolist.o ui-summary.o +OBJECTS = cache.o parsing.o html.o ui-shared.o ui-repolist.o ui-summary.o \ + ui-log.o CFLAGS += -Wall 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) $(OBJECTS): cgit.h git.h .PHONY: clean clean: rm -f cgit *.o |