summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2008-08-06 16:52:27 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-08-06 16:52:27 (UTC)
commit8c2a1367c49dbe54c90f63ae93e0c78473c7dfba (patch) (unidiff)
tree5ed4ea816af2f82ed43b9f875406b9394cbadde4
parente352a013aed6e925a10a92916500c7deccf1410a (diff)
downloadcgit-8c2a1367c49dbe54c90f63ae93e0c78473c7dfba.zip
cgit-8c2a1367c49dbe54c90f63ae93e0c78473c7dfba.tar.gz
cgit-8c2a1367c49dbe54c90f63ae93e0c78473c7dfba.tar.bz2
Makefile: Git dependency, take 3
In commit a1266edfe the build instructions for the git libs where moved to their real targets, which in turn depended on the phony target `git`. But since `git` is an actual directory in cgit the git libs wouldn't be recompiled when needed. So with this patch (third time lucky), cgit is declared to depend on the really phony target `libgit` and the build instructions for `libgit` is to unconditionally rebuild git/libgit.a and git/xdiff/lib.a. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6458431..ab0bbd4 100644
--- a/Makefile
+++ b/Makefile
@@ -29,97 +29,95 @@ 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
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-atom.o 58OBJECTS += ui-atom.o
59OBJECTS += ui-blob.o 59OBJECTS += ui-blob.o
60OBJECTS += ui-commit.o 60OBJECTS += ui-commit.o
61OBJECTS += ui-diff.o 61OBJECTS += ui-diff.o
62OBJECTS += ui-log.o 62OBJECTS += ui-log.o
63OBJECTS += ui-patch.o 63OBJECTS += ui-patch.o
64OBJECTS += ui-refs.o 64OBJECTS += ui-refs.o
65OBJECTS += ui-repolist.o 65OBJECTS += ui-repolist.o
66OBJECTS += ui-shared.o 66OBJECTS += ui-shared.o
67OBJECTS += ui-snapshot.o 67OBJECTS += ui-snapshot.o
68OBJECTS += ui-summary.o 68OBJECTS += ui-summary.o
69OBJECTS += ui-tag.o 69OBJECTS += ui-tag.o
70OBJECTS += ui-tree.o 70OBJECTS += ui-tree.o
71 71
72ifdef NEEDS_LIBICONV 72ifdef NEEDS_LIBICONV
73 EXTLIBS += -liconv 73 EXTLIBS += -liconv
74endif 74endif
75 75
76 76
77.PHONY: all git test install uninstall clean force-version get-git 77.PHONY: all libgit test install uninstall clean force-version get-git
78 78
79all: cgit 79all: cgit
80 80
81VERSION: force-version 81VERSION: force-version
82 @./gen-version.sh "$(CGIT_VERSION)" 82 @./gen-version.sh "$(CGIT_VERSION)"
83-include VERSION 83-include VERSION
84 84
85 85
86CFLAGS += -g -Wall -Igit 86CFLAGS += -g -Wall -Igit
87CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' 87CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)'
88CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' 88CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
89CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 89CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
90CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 90CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
91CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 91CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
92 92
93 93
94cgit: $(OBJECTS) git/libgit.a git/xdiff/lib.a 94cgit: $(OBJECTS) libgit
95 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 95 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
96 96
97cgit.o: VERSION 97cgit.o: VERSION
98 98
99-include $(OBJECTS:.o=.d) 99-include $(OBJECTS:.o=.d)
100 100
101git/libgit.a: git 101libgit:
102 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a 102 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a
103
104git/xdiff/lib.a: git
105 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a 103 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a
106 104
107test: all 105test: all
108 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all 106 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
109 107
110install: all 108install: all
111 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 109 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH)
112 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 110 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
113 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 111 install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css
114 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png 112 install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png
115 113
116uninstall: 114uninstall:
117 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 115 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
118 rm -f $(CGIT_SCRIPT_PATH)/cgit.css 116 rm -f $(CGIT_SCRIPT_PATH)/cgit.css
119 rm -f $(CGIT_SCRIPT_PATH)/cgit.png 117 rm -f $(CGIT_SCRIPT_PATH)/cgit.png
120 118
121clean: 119clean:
122 rm -f cgit VERSION *.o *.d 120 rm -f cgit VERSION *.o *.d
123 121
124get-git: 122get-git:
125 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git 123 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git