8e495b075d
With a working diff, it really has all the basics. Next steps will be to make it more usable and less ugly :) Signed-off-by: Lars Hjemli <hjemli@gmail.com>
33 line
692 B
Makefile
33 line
692 B
Makefile
CGIT_VERSION = 0.1
|
|
|
|
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 = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \
|
|
ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o
|
|
|
|
CFLAGS += -Wall
|
|
|
|
all: cgit
|
|
|
|
install: all clean-cache
|
|
install cgit $(INSTALL_BIN)
|
|
install cgit.css $(INSTALL_CSS)
|
|
|
|
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
|
|
|
|
ui-diff.o: xdiff.h
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f cgit *.o
|
|
|
|
clean-cache:
|
|
rm -rf $(CACHE_ROOT)/*
|