author | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 21:09:49 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-05-14 21:09:49 (UTC) |
commit | 9ecde6568a9e39c942f4c5585ffa494c5df870e4 (patch) (unidiff) | |
tree | 52038a9c553102b13741cecd546435b03917374a /Makefile | |
parent | 5b94c96a83f19a0175a8e1699d71080965793cc2 (diff) | |
download | cgit-9ecde6568a9e39c942f4c5585ffa494c5df870e4.zip cgit-9ecde6568a9e39c942f4c5585ffa494c5df870e4.tar.gz cgit-9ecde6568a9e39c942f4c5585ffa494c5df870e4.tar.bz2 |
Let makefile override the configfile location
Pass CGIT_CONFIG from makefile during build, to enable stuff like
make CGIT_CONFIG=/var/cgit/cgit.conf
Noticed by Kristian Høgsberg <krh@bitplanet.net>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,80 +1,83 @@ | |||
1 | CGIT_VERSION = 0.4 | 1 | CGIT_VERSION = 0.4 |
2 | 2 | ||
3 | prefix = /var/www/htdocs/cgit | 3 | prefix = /var/www/htdocs/cgit |
4 | 4 | ||
5 | SHA1_HEADER = <openssl/sha.h> | 5 | SHA1_HEADER = <openssl/sha.h> |
6 | |||
7 | CACHE_ROOT = /var/cache/cgit | 6 | CACHE_ROOT = /var/cache/cgit |
7 | CGIT_CONFIG = /etc/cgitrc | ||
8 | |||
8 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto | 9 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
9 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ | 10 | OBJECTS = shared.o cache.o parsing.o html.o ui-shared.o ui-repolist.o \ |
10 | ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \ | 11 | ui-summary.o ui-log.o ui-view.o ui-tree.o ui-commit.o ui-diff.o \ |
11 | ui-snapshot.o ui-blob.o | 12 | ui-snapshot.o ui-blob.o |
12 | 13 | ||
13 | CFLAGS += -Wall | 14 | CFLAGS += -Wall |
14 | 15 | ||
15 | ifdef DEBUG | 16 | ifdef DEBUG |
16 | CFLAGS += -g | 17 | CFLAGS += -g |
17 | endif | 18 | endif |
18 | 19 | ||
19 | CFLAGS += -Igit -DSHA1_HEADER='$(SHA1_HEADER)' | 20 | CFLAGS += -Igit |
21 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' | ||
22 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' | ||
23 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' | ||
20 | 24 | ||
21 | 25 | ||
22 | # | 26 | # |
23 | # If make is run on a nongit platform, we need to get the git sources as a tarball. | 27 | # If make is run on a nongit platform, we need to get the git sources as a tarball. |
24 | # But there is currently no recent enough tarball available on kernel.org, so download | 28 | # But there is currently no recent enough tarball available on kernel.org, so download |
25 | # a zipfile from hjemli.net instead | 29 | # a zipfile from hjemli.net instead |
26 | # | 30 | # |
27 | GITVER = $(shell git version 2>/dev/null || echo nogit) | 31 | GITVER = $(shell git version 2>/dev/null || echo nogit) |
28 | ifeq ($(GITVER),nogit) | 32 | ifeq ($(GITVER),nogit) |
29 | GITURL = http://hjemli.net/git/git/snapshot/?id=v1.5.2-rc2 | 33 | GITURL = http://hjemli.net/git/git/snapshot/?id=v1.5.2-rc2 |
30 | INITGIT = test -e git/git.c || (curl "$(GITURL)" > tmp.zip && unzip tmp.zip) | 34 | INITGIT = test -e git/git.c || (curl "$(GITURL)" > tmp.zip && unzip tmp.zip) |
31 | else | 35 | else |
32 | INITGIT = ./submodules.sh -i | 36 | INITGIT = ./submodules.sh -i |
33 | endif | 37 | endif |
34 | 38 | ||
35 | 39 | ||
36 | # | 40 | # |
37 | # basic build rules | 41 | # basic build rules |
38 | # | 42 | # |
39 | all: cgit | 43 | all: cgit |
40 | 44 | ||
41 | cgit: cgit.c cgit.h $(OBJECTS) | 45 | cgit: cgit.c cgit.h $(OBJECTS) |
42 | $(CC) $(CFLAGS) -DCGIT_VERSION='"$(CGIT_VERSION)"' cgit.c -o cgit \ | 46 | $(CC) $(CFLAGS) cgit.c -o cgit $(OBJECTS) $(EXTLIBS) |
43 | $(OBJECTS) $(EXTLIBS) | ||
44 | 47 | ||
45 | $(OBJECTS): cgit.h git/libgit.a | 48 | $(OBJECTS): cgit.h git/libgit.a |
46 | 49 | ||
47 | git/libgit.a: | 50 | git/libgit.a: |
48 | $(INITGIT) | 51 | $(INITGIT) |
49 | $(MAKE) -C git | 52 | $(MAKE) -C git |
50 | 53 | ||
51 | # | 54 | # |
52 | # phony targets | 55 | # phony targets |
53 | # | 56 | # |
54 | install: all clean-cache | 57 | install: all clean-cache |
55 | mkdir -p $(prefix) | 58 | mkdir -p $(prefix) |
56 | install cgit $(prefix)/cgit.cgi | 59 | install cgit $(prefix)/cgit.cgi |
57 | install cgit.css $(prefix)/cgit.css | 60 | install cgit.css $(prefix)/cgit.css |
58 | install add.png del.png $(prefix)/ | 61 | install add.png del.png $(prefix)/ |
59 | 62 | ||
60 | clean-cgit: | 63 | clean-cgit: |
61 | rm -f cgit *.o | 64 | rm -f cgit *.o |
62 | 65 | ||
63 | distclean-cgit: clean-cgit | 66 | distclean-cgit: clean-cgit |
64 | git clean -d -x | 67 | git clean -d -x |
65 | 68 | ||
66 | clean-sub: | 69 | clean-sub: |
67 | $(MAKE) -C git clean | 70 | $(MAKE) -C git clean |
68 | 71 | ||
69 | distclean-sub: clean-sub | 72 | distclean-sub: clean-sub |
70 | $(shell cd git && git clean -d -x) | 73 | $(shell cd git && git clean -d -x) |
71 | 74 | ||
72 | clean-cache: | 75 | clean-cache: |
73 | rm -rf $(CACHE_ROOT)/* | 76 | rm -rf $(CACHE_ROOT)/* |
74 | 77 | ||
75 | clean: clean-cgit clean-sub | 78 | clean: clean-cgit clean-sub |
76 | 79 | ||
77 | distclean: distclean-cgit distclean-sub | 80 | distclean: distclean-cgit distclean-sub |
78 | 81 | ||
79 | .PHONY: all install clean clean-cgit clean-sub clean-cache \ | 82 | .PHONY: all install clean clean-cgit clean-sub clean-cache \ |
80 | distclean distclean-cgit distclean-sub | 83 | distclean distclean-cgit distclean-sub |