author | Lars Hjemli <hjemli@gmail.com> | 2006-12-20 23:53:03 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-20 23:53:34 (UTC) |
commit | 8e495b075d0c84bb9a6e6ddee28930e3adaf8d7d (patch) (unidiff) | |
tree | 07795ff5350e3434d48145362deea1d3ad961abc | |
parent | 40dea5254a64408c8707d31374fbea170c62e42f (diff) | |
download | cgit-8e495b075d0c84bb9a6e6ddee28930e3adaf8d7d.zip cgit-8e495b075d0c84bb9a6e6ddee28930e3adaf8d7d.tar.gz cgit-8e495b075d0c84bb9a6e6ddee28930e3adaf8d7d.tar.bz2 |
cgit 0.1v0.1
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>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,32 +1,32 @@ | |||
1 | CGIT_VERSION = 0.1-pre | 1 | CGIT_VERSION = 0.1 |
2 | 2 | ||
3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi | 3 | INSTALL_BIN = /var/www/htdocs/cgit.cgi |
4 | INSTALL_CSS = /var/www/htdocs/cgit.css | 4 | INSTALL_CSS = /var/www/htdocs/cgit.css |
5 | CACHE_ROOT = /var/cache/cgit | 5 | CACHE_ROOT = /var/cache/cgit |
6 | 6 | ||
7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto | 7 | EXTLIBS = ../git/libgit.a ../git/xdiff/lib.a -lz -lcrypto |
8 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ | 8 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
9 | ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o | 9 | ui-summary.o ui-log.o ui-view.c ui-tree.c ui-commit.c ui-diff.o |
10 | 10 | ||
11 | CFLAGS += -Wall | 11 | CFLAGS += -Wall |
12 | 12 | ||
13 | all: cgit | 13 | all: cgit |
14 | 14 | ||
15 | install: all clean-cache | 15 | install: all clean-cache |
16 | install cgit $(INSTALL_BIN) | 16 | install cgit $(INSTALL_BIN) |
17 | install cgit.css $(INSTALL_CSS) | 17 | install cgit.css $(INSTALL_CSS) |
18 | 18 | ||
19 | cgit: cgit.c cgit.h git.h $(OBJECTS) | 19 | cgit: cgit.c cgit.h git.h $(OBJECTS) |
20 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ | 20 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ |
21 | $(OBJECTS) $(EXTLIBS) | 21 | $(OBJECTS) $(EXTLIBS) |
22 | 22 | ||
23 | $(OBJECTS): cgit.h git.h | 23 | $(OBJECTS): cgit.h git.h |
24 | 24 | ||
25 | ui-diff.o: xdiff.h | 25 | ui-diff.o: xdiff.h |
26 | 26 | ||
27 | .PHONY: clean | 27 | .PHONY: clean |
28 | clean: | 28 | clean: |
29 | rm -f cgit *.o | 29 | rm -f cgit *.o |
30 | 30 | ||
31 | clean-cache: | 31 | clean-cache: |
32 | rm -rf $(CACHE_ROOT)/* | 32 | rm -rf $(CACHE_ROOT)/* |