|
diff --git a/Makefile b/Makefile index 026bae4..27e966d 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,49 +1,49 @@ |
1 | CGIT_VERSION = v0.7 |
1 | CGIT_VERSION = v0.7.1 |
2 | CGIT_SCRIPT_NAME = cgit.cgi |
2 | CGIT_SCRIPT_NAME = cgit.cgi |
3 | CGIT_SCRIPT_PATH = /var/www/htdocs/cgit |
3 | CGIT_SCRIPT_PATH = /var/www/htdocs/cgit |
4 | CGIT_CONFIG = /etc/cgitrc |
4 | CGIT_CONFIG = /etc/cgitrc |
5 | CACHE_ROOT = /var/cache/cgit |
5 | CACHE_ROOT = /var/cache/cgit |
6 | SHA1_HEADER = <openssl/sha.h> |
6 | SHA1_HEADER = <openssl/sha.h> |
7 | GIT_VER = 1.5.3.5 |
7 | GIT_VER = 1.5.3.5 |
8 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 |
8 | GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 |
9 | |
9 | |
10 | # |
10 | # |
11 | # Let the user override the above settings. |
11 | # Let the user override the above settings. |
12 | # |
12 | # |
13 | -include cgit.conf |
13 | -include cgit.conf |
14 | |
14 | |
15 | |
15 | |
16 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
16 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
17 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
17 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
18 | ui-summary.o ui-log.o ui-tree.o ui-commit.o ui-diff.o \ |
18 | ui-summary.o ui-log.o ui-tree.o ui-commit.o ui-diff.o \ |
19 | ui-snapshot.o ui-blob.o ui-tag.o ui-refs.o |
19 | ui-snapshot.o ui-blob.o ui-tag.o ui-refs.o |
20 | |
20 | |
21 | |
21 | |
22 | .PHONY: all git install clean distclean emptycache force-version get-git |
22 | .PHONY: all git install clean distclean emptycache force-version get-git |
23 | |
23 | |
24 | all: cgit git |
24 | all: cgit git |
25 | |
25 | |
26 | VERSION: force-version |
26 | VERSION: force-version |
27 | @./gen-version.sh "$(CGIT_VERSION)" |
27 | @./gen-version.sh "$(CGIT_VERSION)" |
28 | -include VERSION |
28 | -include VERSION |
29 | |
29 | |
30 | |
30 | |
31 | CFLAGS += -g -Wall -Igit |
31 | CFLAGS += -g -Wall -Igit |
32 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' |
32 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' |
33 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
33 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
34 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
34 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
35 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' |
35 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' |
36 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
36 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
37 | |
37 | |
38 | |
38 | |
39 | cgit: cgit.c $(OBJECTS) |
39 | cgit: cgit.c $(OBJECTS) |
40 | $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS) |
40 | $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS) |
41 | |
41 | |
42 | $(OBJECTS): cgit.h git/xdiff/lib.a git/libgit.a VERSION |
42 | $(OBJECTS): cgit.h git/xdiff/lib.a git/libgit.a VERSION |
43 | |
43 | |
44 | git/xdiff/lib.a: | git |
44 | git/xdiff/lib.a: | git |
45 | |
45 | |
46 | git/libgit.a: | git |
46 | git/libgit.a: | git |
47 | |
47 | |
48 | git: |
48 | git: |
49 | cd git && $(MAKE) xdiff/lib.a |
49 | cd git && $(MAKE) xdiff/lib.a |
|