author | Lars Hjemli <hjemli@gmail.com> | 2008-07-31 23:25:51 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-08-01 00:04:41 (UTC) |
commit | a1266edfe6ec1fd678c8f6b60ffbd21d88ff5a93 (patch) (unidiff) | |
tree | da90c4ae217fd171a28b4ce85dd38cc2db09c7ea | |
parent | 952f4ece296d91b8b41f56de9e1c3bc80f94f196 (diff) | |
download | cgit-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>
-rw-r--r-- | Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -1,126 +1,124 @@ | |||
1 | CGIT_VERSION = v0.7.2 | 1 | CGIT_VERSION = v0.7.2 |
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.6 | 7 | GIT_VER = 1.5.6 |
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 | # 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 | # |
19 | QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir | 19 | QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir |
20 | QUIET_SUBDIR1 = | 20 | QUIET_SUBDIR1 = |
21 | 21 | ||
22 | ifneq ($(findstring $(MAKEFLAGS),w),w) | 22 | ifneq ($(findstring $(MAKEFLAGS),w),w) |
23 | PRINT_DIR = --no-print-directory | 23 | PRINT_DIR = --no-print-directory |
24 | else # "make -w" | 24 | else # "make -w" |
25 | NO_SUBDIR = : | 25 | NO_SUBDIR = : |
26 | endif | 26 | endif |
27 | 27 | ||
28 | ifndef V | 28 | ifndef 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 |
34 | endif | 34 | endif |
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 | ||
49 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto | 49 | EXTLIBS = git/libgit.a git/xdiff/lib.a -lz -lcrypto |
50 | OBJECTS = | 50 | OBJECTS = |
51 | OBJECTS += cache.o | 51 | OBJECTS += cache.o |
52 | OBJECTS += cgit.o | 52 | OBJECTS += cgit.o |
53 | OBJECTS += cmd.o | 53 | OBJECTS += cmd.o |
54 | OBJECTS += configfile.o | 54 | OBJECTS += configfile.o |
55 | OBJECTS += html.o | 55 | OBJECTS += html.o |
56 | OBJECTS += parsing.o | 56 | OBJECTS += parsing.o |
57 | OBJECTS += shared.o | 57 | OBJECTS += shared.o |
58 | OBJECTS += ui-blob.o | 58 | OBJECTS += ui-blob.o |
59 | OBJECTS += ui-commit.o | 59 | OBJECTS += ui-commit.o |
60 | OBJECTS += ui-diff.o | 60 | OBJECTS += ui-diff.o |
61 | OBJECTS += ui-log.o | 61 | OBJECTS += ui-log.o |
62 | OBJECTS += ui-patch.o | 62 | OBJECTS += ui-patch.o |
63 | OBJECTS += ui-refs.o | 63 | OBJECTS += ui-refs.o |
64 | OBJECTS += ui-repolist.o | 64 | OBJECTS += ui-repolist.o |
65 | OBJECTS += ui-shared.o | 65 | OBJECTS += ui-shared.o |
66 | OBJECTS += ui-snapshot.o | 66 | OBJECTS += ui-snapshot.o |
67 | OBJECTS += ui-summary.o | 67 | OBJECTS += ui-summary.o |
68 | OBJECTS += ui-tag.o | 68 | OBJECTS += ui-tag.o |
69 | OBJECTS += ui-tree.o | 69 | OBJECTS += ui-tree.o |
70 | 70 | ||
71 | ifdef NEEDS_LIBICONV | 71 | ifdef NEEDS_LIBICONV |
72 | EXTLIBS += -liconv | 72 | EXTLIBS += -liconv |
73 | endif | 73 | endif |
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 | ||
78 | all: cgit | 78 | all: cgit |
79 | 79 | ||
80 | VERSION: force-version | 80 | VERSION: force-version |
81 | @./gen-version.sh "$(CGIT_VERSION)" | 81 | @./gen-version.sh "$(CGIT_VERSION)" |
82 | -include VERSION | 82 | -include VERSION |
83 | 83 | ||
84 | 84 | ||
85 | CFLAGS += -g -Wall -Igit | 85 | CFLAGS += -g -Wall -Igit |
86 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' | 86 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' |
87 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' | 87 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
88 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' | 88 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
89 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' | 89 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' |
90 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' | 90 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
91 | 91 | ||
92 | 92 | ||
93 | cgit: $(OBJECTS) | 93 | cgit: $(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 | |||
98 | cgit.o: VERSION | 96 | cgit.o: VERSION |
99 | 97 | ||
100 | -include $(OBJECTS:.o=.d) | 98 | -include $(OBJECTS:.o=.d) |
101 | 99 | ||
102 | git/xdiff/lib.a, git/libgit.a: git | 100 | git/libgit.a: git |
101 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | ||
103 | 102 | ||
104 | git: | 103 | git/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 | ||
108 | test: all | 106 | test: all |
109 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 107 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
110 | 108 | ||
111 | install: all | 109 | install: 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 | ||
117 | uninstall: | 115 | uninstall: |
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 | ||
122 | clean: | 120 | clean: |
123 | rm -f cgit VERSION *.o *.d | 121 | rm -f cgit VERSION *.o *.d |
124 | 122 | ||
125 | get-git: | 123 | get-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 |