Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-backup/cyphertite/files: cyphertite-2.0.2-fix-build.patch
Date: Thu, 26 Jun 2014 00:56:11
Message-Id: 20140626005607.669FE2004F@flycatcher.gentoo.org
1 grknight 14/06/26 00:56:07
2
3 Added: cyphertite-2.0.2-fix-build.patch
4 Log:
5 Initial commit
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
8
9 Revision Changes Path
10 1.1 app-backup/cyphertite/files/cyphertite-2.0.2-fix-build.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/files/cyphertite-2.0.2-fix-build.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-backup/cyphertite/files/cyphertite-2.0.2-fix-build.patch?rev=1.1&content-type=text/plain
14
15 Index: cyphertite-2.0.2-fix-build.patch
16 ===================================================================
17 diff -aurNw cyphertite-2.0.2/assl/GNUmakefile cyphertite-2.0.2.new/assl/GNUmakefile
18 --- cyphertite-2.0.2/assl/GNUmakefile 2014-04-07 20:07:05.000000000 -0400
19 +++ cyphertite-2.0.2.new/assl/GNUmakefile 2014-06-24 21:51:17.803260239 -0400
20 @@ -40,7 +40,7 @@
21
22 # Compiler and linker flags.
23 CPPFLAGS += -DNEED_LIBCLENS -DASSL_NO_FANCY_ERRORS
24 -INCFLAGS += -I . -I$(INCDIR)/clens -I$(LOCALBASE)/ssl/include
25 +INCFLAGS += -I . -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include
26 WARNFLAGS ?= -Wall -Werror
27 DEBUG += -g
28 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(DEBUG)
29 diff -aurNw cyphertite-2.0.2/clog/GNUmakefile cyphertite-2.0.2.new/clog/GNUmakefile
30 --- cyphertite-2.0.2/clog/GNUmakefile 2014-04-07 20:07:04.000000000 -0400
31 +++ cyphertite-2.0.2.new/clog/GNUmakefile 2014-06-24 21:50:48.171679858 -0400
32 @@ -40,7 +40,7 @@
33
34 # Compiler and linker flags.
35 CPPFLAGS += -DNEED_LIBCLENS
36 -INCFLAGS += -I $(INCDIR)/clens
37 +INCFLAGS += -I $(INCDIR)/clens/include/clens
38 WARNFLAGS ?= -Wall -Werror
39 DEBUG += -g
40 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(DEBUG)
41 diff -aurNw cyphertite-2.0.2/cyphertite/ctutil/GNUmakefile cyphertite-2.0.2.new/cyphertite/ctutil/GNUmakefile
42 --- cyphertite-2.0.2/cyphertite/ctutil/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
43 +++ cyphertite-2.0.2.new/cyphertite/ctutil/GNUmakefile 2014-06-24 21:52:40.806055728 -0400
44 @@ -32,7 +32,7 @@
45
46 # Compiler and linker flags.
47 CPPFLAGS += -DNEED_LIBCLENS
48 -INCFLAGS += -I. -I$(INCDIR)/clens -I$(LOCALBASE)/ssl/include
49 +INCFLAGS += -I. -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
50 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
51
52 LIB.NAME = ctutil
53 diff -aurNw cyphertite-2.0.2/cyphertite/cyphertite/GNUmakefile cyphertite-2.0.2.new/cyphertite/cyphertite/GNUmakefile
54 --- cyphertite-2.0.2/cyphertite/cyphertite/GNUmakefile 2014-06-24 22:34:56.966865150 -0400
55 +++ cyphertite-2.0.2.new/cyphertite/cyphertite/GNUmakefile 2014-06-24 22:33:48.680059480 -0400
56 @@ -42,14 +42,15 @@
57 endif
58
59 # curl
60 -CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --static-libs | \
61 +CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --libs | \
62 sed -e 's/-lssl//g' -e 's/-lcrypto//g' -e 's/-lz//g' -e 's/ \+/ /g')
63
64 # Compiler and linker flags.
65 CPPFLAGS += -DNEED_LIBCLENS
66 -INCFLAGS += -I../ctutil -I../libcyphertite -I$(INCDIR)/clens -I.
67 +INCFLAGS += -I../ctutil -I../libcyphertite -I$(INCDIR)/clens/include/clens -I. -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
68 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
69 LDLIBS += -L../ctutil/obj -L../ctutil -L../libcyphertite/obj -L../libcyphertite
70 +LDLIBS += -L../../assl -L../../exude -L../../clog -L../../shrink/libshrink -L../../xmlsd -L../../clens
71 LDLIBS += -lcyphertite -lctutil -lassl -lexude -lclog -lshrink -lxmlsd
72 LDLIBS += -lclens -levent_core -lexpat -lsqlite3 -llzma -llzo2 $(CURL.LDLIBS)
73 LDLIBS += $(LIB.LINKSTATIC) -lssl -lcrypto
74 diff -aurNw cyphertite-2.0.2/cyphertite/libcyphertite/GNUmakefile cyphertite-2.0.2.new/cyphertite/libcyphertite/GNUmakefile
75 --- cyphertite-2.0.2/cyphertite/libcyphertite/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
76 +++ cyphertite-2.0.2.new/cyphertite/libcyphertite/GNUmakefile 2014-06-24 21:53:59.324881408 -0400
77 @@ -34,7 +34,7 @@
78
79 # Compiler and linker flags.
80 CPPFLAGS += -DNEED_LIBCLENS
81 -INCFLAGS += -I. -I../ctutil -I$(INCDIR)/clens -I$(LOCALBASE)/ssl/include
82 +INCFLAGS += -I. -I../ctutil -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/assl -I $(INCDIR)/exude -I $(INCDIR)/xmlsd -I $(INCDIR)/shrink/libshrink
83 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
84
85 LIB.NAME = cyphertite
86 diff -aurNw cyphertite-2.0.2/exude/GNUmakefile cyphertite-2.0.2.new/exude/GNUmakefile
87 --- cyphertite-2.0.2/exude/GNUmakefile 2014-06-24 21:47:50.386058210 -0400
88 +++ cyphertite-2.0.2.new/exude/GNUmakefile 2014-06-24 21:46:06.511806734 -0400
89 @@ -39,7 +39,7 @@
90
91 # Compiler and linker flags.
92 CPPFLAGS += -DNEED_LIBCLENS
93 -INCFLAGS += -I $(INCDIR)/clens -I . -I $(INCDIR)
94 +INCFLAGS += -I $(INCDIR)/clens/include/clens -I . -I $(INCDIR)/clog
95 WARNFLAGS ?= -Wall -Werror
96 DEBUG += -g
97 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(DEBUG)
98 diff -aurNw cyphertite-2.0.2/shrink/libshrink/GNUmakefile cyphertite-2.0.2.new/shrink/libshrink/GNUmakefile
99 --- cyphertite-2.0.2/shrink/libshrink/GNUmakefile 2014-04-07 20:07:06.000000000 -0400
100 +++ cyphertite-2.0.2.new/shrink/libshrink/GNUmakefile 2014-06-24 21:50:23.180029054 -0400
101 @@ -57,7 +57,7 @@
102
103 # Compiler and linker flags.
104 CPPFLAGS += -DNEED_LIBCLENS
105 -INCFLAGS += -I . -I $(INCDIR)/clens
106 +INCFLAGS += -I . -I $(INCDIR)/clens/include/clens
107 #WARNFLAGS ?= -Wall -Werror
108 WARNFLAGS ?= -Wall
109 DEBUG += -g
110 diff -aurNw cyphertite-2.0.2/shrink/shrink/GNUmakefile cyphertite-2.0.2.new/shrink/shrink/GNUmakefile
111 --- cyphertite-2.0.2/shrink/shrink/GNUmakefile 2014-06-24 21:48:13.397765653 -0400
112 +++ cyphertite-2.0.2.new/shrink/shrink/GNUmakefile 2014-06-24 21:49:21.184875678 -0400
113 @@ -42,11 +42,11 @@
114
115 # Compiler and linker flags.
116 CPPFLAGS += -DNEED_LIBCLENS
117 -INCFLAGS += -I ../libshrink -I $(INCDIR)/clens -I $(LOCALBASE)/ssl/include
118 +INCFLAGS += -I ../libshrink -I $(INCDIR)/clens/include/clens -I $(LOCALBASE)/ssl/include
119 WARNFLAGS ?= -Wall -Werror
120 DEBUG += -g
121 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(DEBUG)
122 -LDLIBS += -L../libshrink/obj -L../libshrink -lshrink -lclens
123 +LDLIBS += -L../libshrink/obj -L../libshrink -lshrink -lclens -L../../clens
124 LDLIBS += ${LIB.LINKSTATIC} -lssl -lcrypto ${LIB.LINKDYNAMIC} -ldl
125
126 BIN.NAME = shrink
127 diff -aurNw cyphertite-2.0.2/xmlsd/GNUmakefile cyphertite-2.0.2.new/xmlsd/GNUmakefile
128 --- cyphertite-2.0.2/xmlsd/GNUmakefile 2014-04-07 20:07:06.000000000 -0400
129 +++ cyphertite-2.0.2.new/xmlsd/GNUmakefile 2014-06-24 21:51:42.518905907 -0400
130 @@ -41,7 +41,7 @@
131
132 # Compiler and linker flags.
133 CPPFLAGS += -DNEED_LIBCLENS
134 -INCFLAGS += -I$(INCDIR)/clens
135 +INCFLAGS += -I$(INCDIR)/clens/include/clens
136 WARNFLAGS ?= -Wall -Werror
137 DEBUG += -g
138 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(DEBUG) -O2
139 diff -aurwN cyphertite-2.0.2/cyphertite/examples/ct_archive/GNUmakefile cyphertite-2.0.2.new/cyphertite/examples/ct_archive/GNUmakefile
140 --- cyphertite-2.0.2/cyphertite/examples/ct_archive/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
141 +++ cyphertite-2.0.2.new/cyphertite/examples/ct_archive/GNUmakefile 2014-06-24 22:45:13.136091682 -0400
142 @@ -42,15 +42,16 @@
143 endif
144
145 # curl
146 -CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --static-libs | \
147 +CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --libs | \
148 sed -e 's/-lssl//g' -e 's/-lcrypto//g' -e 's/-lz//g' -e 's/ \+/ /g')
149
150 # Compiler and linker flags.
151 CPPFLAGS += -DNEED_LIBCLENS
152 -INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR)
153 +INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR) -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
154 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
155 LDLIBS += -L../../ctutil/obj -L../../ctutil -L../../libcyphertite/obj
156 LDLIBS += -L../../libcyphertite
157 +LDLIBS += -L../../../assl -L../../../exude -L../../../clog -L../../../shrink/libshrink -L../../../xmlsd -L../../../clens
158 LDLIBS += -lcyphertite -lctutil -lassl -lexude -lclog -lshrink -lxmlsd
159 LDLIBS += -lclens -levent_core -lexpat -lsqlite3 -llzma -llzo2 $(CURL.LDLIBS)
160 LDLIBS += ${LIB.LINKSTATIC} -lssl -lcrypto
161 diff -aurwN cyphertite-2.0.2/cyphertite/examples/ct_delete/GNUmakefile cyphertite-2.0.2.new/cyphertite/examples/ct_delete/GNUmakefile
162 --- cyphertite-2.0.2/cyphertite/examples/ct_delete/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
163 +++ cyphertite-2.0.2.new/cyphertite/examples/ct_delete/GNUmakefile 2014-06-24 22:45:02.156283600 -0400
164 @@ -42,15 +42,16 @@
165 endif
166
167 # curl
168 -CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --static-libs | \
169 +CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --libs | \
170 sed -e 's/-lssl//g' -e 's/-lcrypto//g' -e 's/-lz//g' -e 's/ \+/ /g')
171
172 # Compiler and linker flags.
173 CPPFLAGS += -DNEED_LIBCLENS
174 -INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR)
175 +INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR) -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
176 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
177 LDLIBS += -L../../ctutil/obj -L../../ctutil -L../../libcyphertite/obj
178 LDLIBS += -L../../libcyphertite
179 +LDLIBS += -L../../../assl -L../../../exude -L../../../clog -L../../../shrink/libshrink -L../../../xmlsd -L../../../clens
180 LDLIBS += -lcyphertite -lctutil -lassl -lexude -lclog -lshrink -lxmlsd
181 LDLIBS += -lclens -levent_core -lexpat -lsqlite3 -llzma -llzo2 $(CURL.LDLIBS)
182 LDLIBS += ${LIB.LINKSTATIC} -lssl -lcrypto
183 diff -aurwN cyphertite-2.0.2/cyphertite/examples/ct_exists/GNUmakefile cyphertite-2.0.2.new/cyphertite/examples/ct_exists/GNUmakefile
184 --- cyphertite-2.0.2/cyphertite/examples/ct_exists/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
185 +++ cyphertite-2.0.2.new/cyphertite/examples/ct_exists/GNUmakefile 2014-06-24 22:44:47.956531839 -0400
186 @@ -42,15 +42,16 @@
187 endif
188
189 # curl
190 -CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --static-libs | \
191 +CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --libs | \
192 sed -e 's/-lssl//g' -e 's/-lcrypto//g' -e 's/-lz//g' -e 's/ \+/ /g')
193
194 # Compiler and linker flags.
195 CPPFLAGS += -DNEED_LIBCLENS
196 -INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR)
197 +INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR) -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
198 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
199 LDLIBS += -L../../ctutil/obj -L../../ctutil -L../../libcyphertite/obj
200 LDLIBS += -L../../libcyphertite
201 +LDLIBS += -L../../../assl -L../../../exude -L../../../clog -L../../../shrink/libshrink -L../../../xmlsd -L../../../clens
202 LDLIBS += -lcyphertite -lctutil -lassl -lexude -lclog -lshrink -lxmlsd
203 LDLIBS += -lclens -levent_core -lexpat -lsqlite3 -llzma -llzo2 $(CURL.LDLIBS)
204 LDLIBS += ${LIB.LINKSTATIC} -lssl -lcrypto
205 diff -aurwN cyphertite-2.0.2/cyphertite/examples/ct_extract/GNUmakefile cyphertite-2.0.2.new/cyphertite/examples/ct_extract/GNUmakefile
206 --- cyphertite-2.0.2/cyphertite/examples/ct_extract/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
207 +++ cyphertite-2.0.2.new/cyphertite/examples/ct_extract/GNUmakefile 2014-06-24 22:46:32.902697084 -0400
208 @@ -42,15 +42,16 @@
209 endif
210
211 # curl
212 -CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --static-libs | \
213 +CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --libs | \
214 sed -e 's/-lssl//g' -e 's/-lcrypto//g' -e 's/-lz//g' -e 's/ \+/ /g')
215
216 # Compiler and linker flags.
217 CPPFLAGS += -DNEED_LIBCLENS
218 -INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR)
219 +INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR) -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
220 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
221 LDLIBS += -L../../ctutil/obj -L../../ctutil -L../../libcyphertite/obj
222 LDLIBS += -L../../libcyphertite
223 +LDLIBS += -L../../../assl -L../../../exude -L../../../clog -L../../../shrink/libshrink -L../../../xmlsd -L../../../clens
224 LDLIBS += -lcyphertite -lctutil -lassl -lexude -lclog -lshrink -lxmlsd
225 LDLIBS += -lclens -levent_core -lexpat -lsqlite3 -llzma -llzo2 $(CURL.LDLIBS)
226 LDLIBS += ${LIB.LINKSTATIC} -lssl -lcrypto
227 diff -aurwN cyphertite-2.0.2/cyphertite/examples/ct_list/GNUmakefile cyphertite-2.0.2.new/cyphertite/examples/ct_list/GNUmakefile
228 --- cyphertite-2.0.2/cyphertite/examples/ct_list/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
229 +++ cyphertite-2.0.2.new/cyphertite/examples/ct_list/GNUmakefile 2014-06-24 22:45:25.911868459 -0400
230 @@ -42,15 +42,16 @@
231 endif
232
233 # curl
234 -CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --static-libs | \
235 +CURL.LDLIBS = $(shell PATH=$(BINDIR):$$PATH curl-config --libs | \
236 sed -e 's/-lssl//g' -e 's/-lcrypto//g' -e 's/-lz//g' -e 's/ \+/ /g')
237
238 # Compiler and linker flags.
239 CPPFLAGS += -DNEED_LIBCLENS
240 -INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR)
241 +INCFLAGS += -I../../ctutil -I../../libcyphertite -I$(INCDIR)/clens -I. -I$(INCDIR) -I$(INCDIR)/clens/include/clens -I$(LOCALBASE)/ssl/include -I $(INCDIR)/clog -I $(INCDIR)/exude -I $(INCDIR)/assl -I $(INCDIR)/shrink/libshrink -I $(INCDIR)/xmlsd
242 CFLAGS += $(INCFLAGS) $(WARNFLAGS) $(OPTLEVEL) $(DEBUG)
243 LDLIBS += -L../../ctutil/obj -L../../ctutil -L../../libcyphertite/obj
244 LDLIBS += -L../../libcyphertite
245 +LDLIBS += -L../../../assl -L../../../exude -L../../../clog -L../../../shrink/libshrink -L../../../xmlsd -L../../../clens
246 LDLIBS += -lcyphertite -lctutil -lassl -lexude -lclog -lshrink -lxmlsd
247 LDLIBS += -lclens -levent_core -lexpat -lsqlite3 -llzma -llzo2 $(CURL.LDLIBS)
248 LDLIBS += ${LIB.LINKSTATIC} -lssl -lcrypto
249 diff -aruwN cyphertite-2.0.2/shrink/GNUmakefile cyphertite-2.0.2.new/shrink/GNUmakefile
250 --- cyphertite-2.0.2/shrink/GNUmakefile 2014-04-07 20:07:06.000000000 -0400
251 +++ cyphertite-2.0.2.new/shrink/GNUmakefile 2014-06-25 18:47:30.648799283 -0400
252 @@ -15,3 +15,4 @@
253
254 .PHONY: all $(SUBDIRS) $(TARGETS)
255
256 +shrink: libshrink
257
258 diff -aruwN cyphertite-2.0.2/cyphertite/GNUmakefile cyphertite-2.0.2.new/cyphertite/GNUmakefile
259 --- cyphertite-2.0.2/cyphertite/GNUmakefile 2014-04-07 20:07:03.000000000 -0400
260 +++ cyphertite-2.0.2.new/cyphertite/GNUmakefile 2014-06-25 18:51:05.345377210 -0400
261 @@ -12,3 +12,5 @@
262
263 .PHONY: all $(SUBDIRS) $(TARGETS)
264
265 +examples: ctutil libcyphertite
266 +cyphertite: libcyphertite
267 diff -aruwN cyphertite-2.0.2/GNUmakefile cyphertite-2.0.2.new/GNUmakefile
268 --- cyphertite-2.0.2/GNUmakefile 1969-12-31 19:00:00.000000000 -0500
269 +++ cyphertite-2.0.2.new/GNUmakefile 2014-06-25 20:16:01.850059662 -0400
270 @@ -0,0 +1,22 @@
271 +SUBDIRS = clens clog assl xmlsd shrink exude cyphertite
272 +TARGETS = clean obj install uninstall depend
273 +
274 +all: $(SUBDIRS)
275 +
276 +$(TARGETS):
277 + @for d in $(SUBDIRS); do \
278 + echo "===> $$d"; \
279 + $(MAKE) -C $$d/ $@ || exit $$?; \
280 + done
281 +
282 +$(SUBDIRS):
283 + @echo "===> $@"
284 + $(MAKE) -C $@
285 +
286 +.PHONY: all $(SUBDIRS) $(TARGETS)
287 +
288 +clog: clens
289 +assl: clens
290 +xmlsd: clens
291 +shrink: clens
292 +cyphertite: clens clog assl xmlsd shrink exude