summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-07-31 23:25:51 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-08-01 00:04:41 (UTC)
commita1266edfe6ec1fd678c8f6b60ffbd21d88ff5a93 (patch) (unidiff)
treeda90c4ae217fd171a28b4ce85dd38cc2db09c7ea
parent952f4ece296d91b8b41f56de9e1c3bc80f94f196 (diff)
downloadcgit-a1266edfe6ec1fd678c8f6b60ffbd21d88ff5a93.zip
cgit-a1266edfe6ec1fd678c8f6b60ffbd21d88ff5a93.tar.gz
cgit-a1266edfe6ec1fd678c8f6b60ffbd21d88ff5a93.tar.bz2
Makefile: another take on git dependency rules
When building cgit we depend on xdiff/lib.a and libgit.a in the git directory, but the previous attempt on describing this dependency failed since the build instructions for the libs was placed under the phony `git` target. This patch fixes the issue by moving the build instructions to their real targets. It also makes it clear that only the `cgit` target depends on the git binaries (since they're only used during linking). And while at it, the patch also cleans up the list of phony targets. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile12
1 files changed, 5 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d83a46a..e1436a3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,126 +1,124 @@
1CGIT_VERSION = v0.7.2 1CGIT_VERSION = v0.7.2
2CGIT_SCRIPT_NAME = cgit.cgi 2CGIT_SCRIPT_NAME = cgit.cgi
3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit 3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4CGIT_CONFIG = /etc/cgitrc 4CGIT_CONFIG = /etc/cgitrc
5CACHE_ROOT = /var/cache/cgit 5CACHE_ROOT = /var/cache/cgit
6SHA1_HEADER = <openssl/sha.h> 6SHA1_HEADER = <openssl/sha.h>
7GIT_VER = 1.5.6 7GIT_VER = 1.5.6
8GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 8GIT_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# Define a way to invoke make in subdirs quietly, shamelessly ripped 16# Define a way to invoke make in subdirs quietly, shamelessly ripped
17# from git.git 17# from git.git
18# 18#
19QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir 19QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
20QUIET_SUBDIR1 = 20QUIET_SUBDIR1 =
21 21
22ifneq ($(findstring $(MAKEFLAGS),w),w) 22ifneq ($(findstring $(MAKEFLAGS),w),w)
23PRINT_DIR = --no-print-directory 23PRINT_DIR = --no-print-directory
24else # "make -w" 24else # "make -w"
25NO_SUBDIR = : 25NO_SUBDIR = :
26endif 26endif
27 27
28ifndef V 28ifndef V
29 QUIET_CC = @echo ' ' CC $@; 29 QUIET_CC = @echo ' ' CC $@;
30 QUIET_MM = @echo ' ' MM $@; 30 QUIET_MM = @echo ' ' MM $@;
31 QUIET_SUBDIR0 = +@subdir= 31 QUIET_SUBDIR0 = +@subdir=
32 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ 32 QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
33 $(MAKE) $(PRINT_DIR) -C $$subdir 33 $(MAKE) $(PRINT_DIR) -C $$subdir
34endif 34endif
35 35
36# 36#
37# Define a pattern rule for automatic dependency building 37# Define a pattern rule for automatic dependency building
38# 38#
39%.d: %.c 39%.d: %.c
40 $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@ 40 $(QUIET_MM)$(CC) $(CFLAGS) -MM $< | sed -e 's/\($*\)\.o:/\1.o $@:/g' >$@
41 41
42# 42#
43# Define a pattern rule for silent object building 43# Define a pattern rule for silent object building
44# 44#
45%.o: %.c 45%.o: %.c
46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< 46 $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $<
47 47
48 48
49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto 49EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto
50OBJECTS = 50OBJECTS =
51OBJECTS += cache.o 51OBJECTS += cache.o
52OBJECTS += cgit.o 52OBJECTS += cgit.o
53OBJECTS += cmd.o 53OBJECTS += cmd.o
54OBJECTS += configfile.o 54OBJECTS += configfile.o
55OBJECTS += html.o 55OBJECTS += html.o
56OBJECTS += parsing.o 56OBJECTS += parsing.o
57OBJECTS += shared.o 57OBJECTS += shared.o
58OBJECTS += ui-blob.o 58OBJECTS += ui-blob.o
59OBJECTS += ui-commit.o 59OBJECTS += ui-commit.o
60OBJECTS += ui-diff.o 60OBJECTS += ui-diff.o
61OBJECTS += ui-log.o 61OBJECTS += ui-log.o
62OBJECTS += ui-patch.o 62OBJECTS += ui-patch.o
63OBJECTS += ui-refs.o 63OBJECTS += ui-refs.o
64OBJECTS += ui-repolist.o 64OBJECTS += ui-repolist.o
65OBJECTS += ui-shared.o 65OBJECTS += ui-shared.o
66OBJECTS += ui-snapshot.o 66OBJECTS += ui-snapshot.o
67OBJECTS += ui-summary.o 67OBJECTS += ui-summary.o
68OBJECTS += ui-tag.o 68OBJECTS += ui-tag.o
69OBJECTS += ui-tree.o 69OBJECTS += ui-tree.o
70 70
71ifdef NEEDS_LIBICONV 71ifdef NEEDS_LIBICONV
72 EXTLIBS += -liconv 72 EXTLIBS += -liconv
73endif 73endif
74 74
75 75
76.PHONY: all git test install clean distclean emptycache force-version get-git 76.PHONY: all git test install uninstall clean force-version get-git
77 77
78all: cgit 78all: cgit
79 79
80VERSION: force-version 80VERSION: force-version
81 @./gen-version.sh "$(CGIT_VERSION)" 81 @./gen-version.sh "$(CGIT_VERSION)"
82-include VERSION 82-include VERSION
83 83
84 84
85CFLAGS += -g -Wall -Igit 85CFLAGS += -g -Wall -Igit
86CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' 86CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
87CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' 87CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
88CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 88CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
89CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 89CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
90CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 90CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
91 91
92 92
93cgit: $(OBJECTS) 93cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a
94 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 94 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
95 95
96$(OBJECTS): | git/xdiff/lib.a git/libgit.a
97
98cgit.o: VERSION 96cgit.o: VERSION
99 97
100-include $(OBJECTS:.o=.d) 98-include $(OBJECTS:.o=.d)
101 99
102git/xdiff/lib.a, git/libgit.a: git 100git/libgit.a: git
101 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a
103 102
104git: 103git/xdiff/lib.a: git
105 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a 104 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a
106 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a
107 105
108test: all 106test: all
109 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all 107 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
110 108
111install: all 109install: all
112 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 110 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
113 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 111 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
114 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 112 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
115 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png 113 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
116 114
117uninstall: 115uninstall:
118 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 116 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
119 rm -f $(CGIT_SCRIPT_PATH)/cgit.css 117 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
120 rm -f $(CGIT_SCRIPT_PATH)/cgit.png 118 rm -f $(CGIT_SCRIPT_PATH)/cgit.png
121 119
122clean: 120clean:
123 rm -f cgit VERSION *.o *.d 121 rm -f cgit VERSION *.o *.d
124 122
125get-git: 123get-git:
126 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git 124 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git