1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
---|
2 | .SUFFIXES: .o .cxx .depend |
---|
3 | |
---|
4 | # objects with autogenerated prototypes (gb_prot.h + ad_prot.h + ad_k_prot.h) |
---|
5 | GB_O = \ |
---|
6 | adTest.o \ |
---|
7 | ad_load.o \ |
---|
8 | ad_save_load.o \ |
---|
9 | adcomm.o \ |
---|
10 | adhash.o \ |
---|
11 | adcache.o \ |
---|
12 | adhashtools.o \ |
---|
13 | adlang1.o \ |
---|
14 | adlink.o \ |
---|
15 | admalloc.o \ |
---|
16 | admatch.o \ |
---|
17 | admath.o \ |
---|
18 | adoptimize.o \ |
---|
19 | adperl.o \ |
---|
20 | adstring.o \ |
---|
21 | adfile.o \ |
---|
22 | adsystem.o \ |
---|
23 | adtcp.o \ |
---|
24 | adtune.o \ |
---|
25 | arbdb.o \ |
---|
26 | adExperiment.o \ |
---|
27 | adGene.o \ |
---|
28 | ad_core.o \ |
---|
29 | adcompr.o \ |
---|
30 | adindex.o \ |
---|
31 | admap.o \ |
---|
32 | adquery.o \ |
---|
33 | adsocket.o \ |
---|
34 | |
---|
35 | |
---|
36 | # objects with autogenerated prototypes (gb_t_prot.h + ad_t_prot.h) |
---|
37 | GB_T = \ |
---|
38 | adChangeKey.o \ |
---|
39 | adRevCompl.o \ |
---|
40 | adcolumns.o \ |
---|
41 | aditem.o \ |
---|
42 | adname.o \ |
---|
43 | adseqcompr.o \ |
---|
44 | adtables.o \ |
---|
45 | adtools.o \ |
---|
46 | adtree.o \ |
---|
47 | adali.o \ |
---|
48 | |
---|
49 | |
---|
50 | # c++-only objects |
---|
51 | GB_PP = \ |
---|
52 | arbdbpp.o \ |
---|
53 | |
---|
54 | # objects w/o autogenerated prototypes |
---|
55 | GB_X = \ |
---|
56 | ad_config.o \ |
---|
57 | |
---|
58 | OBJECTS = $(GB_O) $(GB_T) $(GB_PP) $(GB_X) |
---|
59 | |
---|
60 | $(MAIN): $(OBJECTS) |
---|
61 | $(LINK_SHARED_LIB) $(@:.a=).$(SHARED_LIB_SUFFIX) $(OBJECTS) |
---|
62 | touch $@ |
---|
63 | |
---|
64 | .cxx.o: |
---|
65 | $(CPPLIB) $(cflags) -c $< $(AINCLUDES) $(POST_COMPILE) |
---|
66 | |
---|
67 | proto: global_proto local_proto |
---|
68 | |
---|
69 | local_proto: lpro tlpro |
---|
70 | |
---|
71 | lpro: $(GB_O:.o=.cxx) |
---|
72 | ../AISC_MKPTPS/aisc_mkpt -c "Internal database interface" -G -A -w gb_prot.h -F ^gb_,^gbs_,^gbcm,^gbm_,^gbl_ $^ >gb_prot.h.tmp |
---|
73 | ../SOURCE_TOOLS/mv_if_diff gb_prot.h.tmp gb_prot.h |
---|
74 | |
---|
75 | tlpro: $(GB_T:.o=.cxx) |
---|
76 | ../AISC_MKPTPS/aisc_mkpt -c "Internal toolkit" -G -A -w gb_t_prot.h -F ^gb_,^gbt_,^gbs_ $^ >gb_t_prot.h.tmp |
---|
77 | ../SOURCE_TOOLS/mv_if_diff gb_t_prot.h.tmp gb_t_prot.h |
---|
78 | |
---|
79 | global_proto: pro ppro tpro |
---|
80 | |
---|
81 | pro: $(GB_O:.o=.cxx) |
---|
82 | ../AISC_MKPTPS/aisc_mkpt -c "ARB database interface" -G -P -A -w ad_prot.h -F ^GB_,^GEN_,^EXP_,^GBS_,^GBT_,^GBCM,^GBC_ $^ >ad_prot.h.tmp |
---|
83 | ../SOURCE_TOOLS/mv_if_diff ad_prot.h.tmp ad_prot.h |
---|
84 | |
---|
85 | ppro: $(GB_O:.o=.cxx) |
---|
86 | ../AISC_MKPTPS/aisc_mkpt -c "ARB perl interface" -G -A -w ad_p_prot.h -F ^GBP_ $^ >ad_p_prot.h.tmp |
---|
87 | ../SOURCE_TOOLS/mv_if_diff ad_p_prot.h.tmp ad_p_prot.h |
---|
88 | |
---|
89 | tpro: $(GB_T:.o=.cxx) |
---|
90 | ../AISC_MKPTPS/aisc_mkpt -c "ARB toolkit" -G -A -w ad_t_prot.h -F ^GB_,^GEN_,^EXP_,^GBT_ $^ >ad_t_prot.h.tmp |
---|
91 | ../SOURCE_TOOLS/mv_if_diff ad_t_prot.h.tmp ad_t_prot.h |
---|
92 | |
---|
93 | wc: |
---|
94 | wc *.[ch] |
---|
95 | |
---|
96 | clean: |
---|
97 | rm -f $(OBJECTS) *.a *.so |
---|
98 | |
---|
99 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
100 | depends: $(DEPENDS) |
---|
101 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
102 | @rm $(DEPENDS) |
---|
103 | $(DEPENDS): depend.init |
---|
104 | depend.init: |
---|
105 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
106 | .c.depend: |
---|
107 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
108 | .cxx.depend: |
---|
109 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
110 | |
---|
111 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
---|
112 | |
---|
113 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
114 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl |
---|
115 | |
---|
116 | ad_config.o: ad_config.h |
---|
117 | ad_config.o: ad_prot.h |
---|
118 | ad_config.o: ad_t_prot.h |
---|
119 | ad_config.o: arb_assert.h |
---|
120 | ad_config.o: arbdb.h |
---|
121 | ad_config.o: arbdb_base.h |
---|
122 | ad_config.o: arbdbt.h |
---|
123 | ad_config.o: gb_local.h |
---|
124 | ad_config.o: gb_prot.h |
---|
125 | ad_config.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
126 | ad_config.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
127 | ad_config.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
128 | ad_config.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
129 | ad_config.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
130 | ad_config.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
131 | ad_config.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
132 | ad_config.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
133 | ad_config.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
134 | ad_config.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
135 | ad_config.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
136 | ad_config.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
137 | ad_config.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
138 | |
---|
139 | ad_core.o: ad_prot.h |
---|
140 | ad_core.o: arb_assert.h |
---|
141 | ad_core.o: arbdb.h |
---|
142 | ad_core.o: arbdb_base.h |
---|
143 | ad_core.o: gb_data.h |
---|
144 | ad_core.o: gb_header.h |
---|
145 | ad_core.o: gb_index.h |
---|
146 | ad_core.o: gb_key.h |
---|
147 | ad_core.o: gb_local.h |
---|
148 | ad_core.o: gb_localdata.h |
---|
149 | ad_core.o: gb_main.h |
---|
150 | ad_core.o: gb_memory.h |
---|
151 | ad_core.o: gb_prot.h |
---|
152 | ad_core.o: gb_storage.h |
---|
153 | ad_core.o: gb_ts.h |
---|
154 | ad_core.o: gb_tune.h |
---|
155 | ad_core.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
156 | ad_core.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
157 | ad_core.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
158 | ad_core.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
159 | ad_core.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
160 | ad_core.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
161 | ad_core.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
162 | ad_core.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
163 | ad_core.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
164 | |
---|
165 | ad_load.o: ad_prot.h |
---|
166 | ad_load.o: ad_t_prot.h |
---|
167 | ad_load.o: arb_assert.h |
---|
168 | ad_load.o: arbdb.h |
---|
169 | ad_load.o: arbdb_base.h |
---|
170 | ad_load.o: arbdbt.h |
---|
171 | ad_load.o: gb_data.h |
---|
172 | ad_load.o: gb_header.h |
---|
173 | ad_load.o: gb_key.h |
---|
174 | ad_load.o: gb_load.h |
---|
175 | ad_load.o: gb_local.h |
---|
176 | ad_load.o: gb_localdata.h |
---|
177 | ad_load.o: gb_main.h |
---|
178 | ad_load.o: gb_map.h |
---|
179 | ad_load.o: gb_memory.h |
---|
180 | ad_load.o: gb_prot.h |
---|
181 | ad_load.o: gb_storage.h |
---|
182 | ad_load.o: gb_tune.h |
---|
183 | ad_load.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
184 | ad_load.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
185 | ad_load.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
186 | ad_load.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
187 | ad_load.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
188 | ad_load.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
189 | ad_load.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
190 | ad_load.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
191 | ad_load.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
192 | ad_load.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
193 | ad_load.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
194 | ad_load.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
195 | |
---|
196 | ad_save_load.o: ad_prot.h |
---|
197 | ad_save_load.o: arb_assert.h |
---|
198 | ad_save_load.o: arbdb.h |
---|
199 | ad_save_load.o: arbdb_base.h |
---|
200 | ad_save_load.o: gb_data.h |
---|
201 | ad_save_load.o: gb_header.h |
---|
202 | ad_save_load.o: gb_key.h |
---|
203 | ad_save_load.o: gb_load.h |
---|
204 | ad_save_load.o: gb_local.h |
---|
205 | ad_save_load.o: gb_main.h |
---|
206 | ad_save_load.o: gb_map.h |
---|
207 | ad_save_load.o: gb_memory.h |
---|
208 | ad_save_load.o: gb_prot.h |
---|
209 | ad_save_load.o: gb_storage.h |
---|
210 | ad_save_load.o: gb_tune.h |
---|
211 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
212 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
213 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
214 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
215 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
216 | ad_save_load.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
217 | ad_save_load.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
218 | ad_save_load.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
219 | ad_save_load.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
220 | ad_save_load.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
221 | ad_save_load.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
222 | |
---|
223 | adali.o: ad_prot.h |
---|
224 | adali.o: ad_t_prot.h |
---|
225 | adali.o: adGene.h |
---|
226 | adali.o: arb_assert.h |
---|
227 | adali.o: arbdb.h |
---|
228 | adali.o: arbdb_base.h |
---|
229 | adali.o: arbdbt.h |
---|
230 | adali.o: gb_local.h |
---|
231 | adali.o: gb_prot.h |
---|
232 | adali.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
233 | adali.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
234 | adali.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
235 | adali.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
236 | adali.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
237 | adali.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
238 | adali.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
239 | adali.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
240 | adali.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
241 | adali.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
242 | adali.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
243 | |
---|
244 | adcache.o: ad_prot.h |
---|
245 | adcache.o: arb_assert.h |
---|
246 | adcache.o: arbdb.h |
---|
247 | adcache.o: arbdb_base.h |
---|
248 | adcache.o: gb_data.h |
---|
249 | adcache.o: gb_header.h |
---|
250 | adcache.o: gb_key.h |
---|
251 | adcache.o: gb_local.h |
---|
252 | adcache.o: gb_main.h |
---|
253 | adcache.o: gb_memory.h |
---|
254 | adcache.o: gb_prot.h |
---|
255 | adcache.o: gb_storage.h |
---|
256 | adcache.o: gb_tune.h |
---|
257 | adcache.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
258 | adcache.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
259 | adcache.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
260 | adcache.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
261 | adcache.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
262 | adcache.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
263 | adcache.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
264 | adcache.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
265 | adcache.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
266 | |
---|
267 | adChangeKey.o: ad_prot.h |
---|
268 | adChangeKey.o: ad_t_prot.h |
---|
269 | adChangeKey.o: arb_assert.h |
---|
270 | adChangeKey.o: arbdb.h |
---|
271 | adChangeKey.o: arbdb_base.h |
---|
272 | adChangeKey.o: arbdbt.h |
---|
273 | adChangeKey.o: gb_local.h |
---|
274 | adChangeKey.o: gb_prot.h |
---|
275 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
276 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
277 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
278 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
279 | adChangeKey.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
280 | adChangeKey.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
281 | adChangeKey.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
282 | adChangeKey.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
283 | adChangeKey.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
284 | |
---|
285 | adcolumns.o: ad_prot.h |
---|
286 | adcolumns.o: ad_t_prot.h |
---|
287 | adcolumns.o: adGene.h |
---|
288 | adcolumns.o: arb_assert.h |
---|
289 | adcolumns.o: arbdb.h |
---|
290 | adcolumns.o: arbdb_base.h |
---|
291 | adcolumns.o: arbdbt.h |
---|
292 | adcolumns.o: gb_local.h |
---|
293 | adcolumns.o: gb_prot.h |
---|
294 | adcolumns.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
295 | adcolumns.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
296 | adcolumns.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
297 | adcolumns.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
298 | adcolumns.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
299 | adcolumns.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
300 | adcolumns.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
301 | adcolumns.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
302 | adcolumns.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
303 | adcolumns.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
304 | |
---|
305 | adcomm.o: ad_prot.h |
---|
306 | adcomm.o: arb_assert.h |
---|
307 | adcomm.o: arbdb.h |
---|
308 | adcomm.o: arbdb_base.h |
---|
309 | adcomm.o: gb_comm.h |
---|
310 | adcomm.o: gb_data.h |
---|
311 | adcomm.o: gb_header.h |
---|
312 | adcomm.o: gb_key.h |
---|
313 | adcomm.o: gb_local.h |
---|
314 | adcomm.o: gb_localdata.h |
---|
315 | adcomm.o: gb_main.h |
---|
316 | adcomm.o: gb_memory.h |
---|
317 | adcomm.o: gb_prot.h |
---|
318 | adcomm.o: gb_storage.h |
---|
319 | adcomm.o: gb_tune.h |
---|
320 | adcomm.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
321 | adcomm.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
322 | adcomm.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
323 | adcomm.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
324 | adcomm.o: $(ARBHOME)/INCLUDE/arb_signal.h |
---|
325 | adcomm.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
326 | adcomm.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
327 | adcomm.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
328 | adcomm.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
329 | adcomm.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
330 | adcomm.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
331 | adcomm.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
332 | |
---|
333 | adcompr.o: ad_prot.h |
---|
334 | adcompr.o: ad_t_prot.h |
---|
335 | adcompr.o: arb_assert.h |
---|
336 | adcompr.o: arbdb.h |
---|
337 | adcompr.o: arbdb_base.h |
---|
338 | adcompr.o: arbdbt.h |
---|
339 | adcompr.o: gb_compress.h |
---|
340 | adcompr.o: gb_data.h |
---|
341 | adcompr.o: gb_header.h |
---|
342 | adcompr.o: gb_key.h |
---|
343 | adcompr.o: gb_local.h |
---|
344 | adcompr.o: gb_localdata.h |
---|
345 | adcompr.o: gb_main.h |
---|
346 | adcompr.o: gb_memory.h |
---|
347 | adcompr.o: gb_prot.h |
---|
348 | adcompr.o: gb_storage.h |
---|
349 | adcompr.o: gb_t_prot.h |
---|
350 | adcompr.o: gb_tune.h |
---|
351 | adcompr.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
352 | adcompr.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
353 | adcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
354 | adcompr.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
355 | adcompr.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
356 | adcompr.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
357 | adcompr.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
358 | adcompr.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
359 | adcompr.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
360 | adcompr.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
361 | |
---|
362 | adExperiment.o: ad_prot.h |
---|
363 | adExperiment.o: ad_t_prot.h |
---|
364 | adExperiment.o: arb_assert.h |
---|
365 | adExperiment.o: arbdb.h |
---|
366 | adExperiment.o: arbdb_base.h |
---|
367 | adExperiment.o: arbdbt.h |
---|
368 | adExperiment.o: gb_local.h |
---|
369 | adExperiment.o: gb_prot.h |
---|
370 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
371 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
372 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
373 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
374 | adExperiment.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
375 | adExperiment.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
376 | adExperiment.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
377 | adExperiment.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
378 | adExperiment.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
379 | |
---|
380 | adfile.o: ad_prot.h |
---|
381 | adfile.o: arb_assert.h |
---|
382 | adfile.o: arbdb.h |
---|
383 | adfile.o: arbdb_base.h |
---|
384 | adfile.o: gb_load.h |
---|
385 | adfile.o: gb_local.h |
---|
386 | adfile.o: gb_prot.h |
---|
387 | adfile.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
388 | adfile.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
389 | adfile.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
390 | adfile.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
391 | adfile.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
392 | adfile.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
393 | adfile.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
394 | adfile.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
395 | adfile.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
396 | adfile.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
397 | adfile.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
398 | adfile.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
399 | adfile.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
400 | adfile.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
401 | |
---|
402 | adGene.o: ad_prot.h |
---|
403 | adGene.o: ad_t_prot.h |
---|
404 | adGene.o: adGene.h |
---|
405 | adGene.o: arb_assert.h |
---|
406 | adGene.o: arbdb.h |
---|
407 | adGene.o: arbdb_base.h |
---|
408 | adGene.o: arbdbt.h |
---|
409 | adGene.o: gb_local.h |
---|
410 | adGene.o: gb_prot.h |
---|
411 | adGene.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
412 | adGene.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
413 | adGene.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
414 | adGene.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
415 | adGene.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
416 | adGene.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
417 | adGene.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
418 | adGene.o: $(ARBHOME)/INCLUDE/arb_unit_test.h |
---|
419 | adGene.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
420 | adGene.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
421 | adGene.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
422 | adGene.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
423 | adGene.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
424 | adGene.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
425 | |
---|
426 | adhash.o: ad_prot.h |
---|
427 | adhash.o: arb_assert.h |
---|
428 | adhash.o: arbdb.h |
---|
429 | adhash.o: arbdb_base.h |
---|
430 | adhash.o: gb_data.h |
---|
431 | adhash.o: gb_hashindex.h |
---|
432 | adhash.o: gb_local.h |
---|
433 | adhash.o: gb_main.h |
---|
434 | adhash.o: gb_memory.h |
---|
435 | adhash.o: gb_prot.h |
---|
436 | adhash.o: gb_tune.h |
---|
437 | adhash.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
438 | adhash.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
439 | adhash.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
440 | adhash.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
441 | adhash.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
442 | adhash.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
443 | adhash.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
444 | adhash.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
445 | adhash.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
446 | adhash.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
447 | adhash.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
448 | adhash.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
449 | |
---|
450 | adhashtools.o: ad_prot.h |
---|
451 | adhashtools.o: ad_t_prot.h |
---|
452 | adhashtools.o: arb_assert.h |
---|
453 | adhashtools.o: arbdb.h |
---|
454 | adhashtools.o: arbdb_base.h |
---|
455 | adhashtools.o: arbdbt.h |
---|
456 | adhashtools.o: gb_local.h |
---|
457 | adhashtools.o: gb_prot.h |
---|
458 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
459 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
460 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
461 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
462 | adhashtools.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
463 | adhashtools.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
464 | adhashtools.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
465 | adhashtools.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
466 | adhashtools.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
467 | |
---|
468 | adindex.o: ad_prot.h |
---|
469 | adindex.o: arb_assert.h |
---|
470 | adindex.o: arbdb.h |
---|
471 | adindex.o: arbdb_base.h |
---|
472 | adindex.o: gb_data.h |
---|
473 | adindex.o: gb_hashindex.h |
---|
474 | adindex.o: gb_header.h |
---|
475 | adindex.o: gb_index.h |
---|
476 | adindex.o: gb_key.h |
---|
477 | adindex.o: gb_local.h |
---|
478 | adindex.o: gb_main.h |
---|
479 | adindex.o: gb_memory.h |
---|
480 | adindex.o: gb_prot.h |
---|
481 | adindex.o: gb_storage.h |
---|
482 | adindex.o: gb_ts.h |
---|
483 | adindex.o: gb_tune.h |
---|
484 | adindex.o: gb_undo.h |
---|
485 | adindex.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
486 | adindex.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
487 | adindex.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
488 | adindex.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
489 | adindex.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
490 | adindex.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
491 | adindex.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
492 | adindex.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
493 | adindex.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
494 | adindex.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
495 | |
---|
496 | aditem.o: ad_prot.h |
---|
497 | aditem.o: ad_t_prot.h |
---|
498 | aditem.o: arb_assert.h |
---|
499 | aditem.o: arbdb.h |
---|
500 | aditem.o: arbdb_base.h |
---|
501 | aditem.o: arbdbt.h |
---|
502 | aditem.o: gb_local.h |
---|
503 | aditem.o: gb_prot.h |
---|
504 | aditem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
505 | aditem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
506 | aditem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
507 | aditem.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
508 | aditem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
509 | aditem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
510 | aditem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
511 | aditem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
512 | aditem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
513 | aditem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
514 | |
---|
515 | adlang1.o: ad_prot.h |
---|
516 | adlang1.o: ad_t_prot.h |
---|
517 | adlang1.o: adGene.h |
---|
518 | adlang1.o: arb_assert.h |
---|
519 | adlang1.o: arbdb.h |
---|
520 | adlang1.o: arbdb_base.h |
---|
521 | adlang1.o: arbdbt.h |
---|
522 | adlang1.o: gb_aci.h |
---|
523 | adlang1.o: gb_data.h |
---|
524 | adlang1.o: gb_header.h |
---|
525 | adlang1.o: gb_key.h |
---|
526 | adlang1.o: gb_local.h |
---|
527 | adlang1.o: gb_localdata.h |
---|
528 | adlang1.o: gb_main.h |
---|
529 | adlang1.o: gb_memory.h |
---|
530 | adlang1.o: gb_prot.h |
---|
531 | adlang1.o: gb_tune.h |
---|
532 | adlang1.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
533 | adlang1.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
534 | adlang1.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
535 | adlang1.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
536 | adlang1.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
537 | adlang1.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
538 | adlang1.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
539 | adlang1.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
540 | adlang1.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
541 | adlang1.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
542 | adlang1.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
543 | adlang1.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
544 | adlang1.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
545 | adlang1.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
546 | |
---|
547 | adlink.o: ad_prot.h |
---|
548 | adlink.o: arb_assert.h |
---|
549 | adlink.o: arbdb.h |
---|
550 | adlink.o: arbdb_base.h |
---|
551 | adlink.o: gb_data.h |
---|
552 | adlink.o: gb_local.h |
---|
553 | adlink.o: gb_main.h |
---|
554 | adlink.o: gb_memory.h |
---|
555 | adlink.o: gb_prot.h |
---|
556 | adlink.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
557 | adlink.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
558 | adlink.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
559 | adlink.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
560 | adlink.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
561 | adlink.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
562 | adlink.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
563 | adlink.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
564 | adlink.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
565 | |
---|
566 | admalloc.o: ad_prot.h |
---|
567 | admalloc.o: arb_assert.h |
---|
568 | admalloc.o: arbdb.h |
---|
569 | admalloc.o: arbdb_base.h |
---|
570 | admalloc.o: gb_data.h |
---|
571 | admalloc.o: gb_header.h |
---|
572 | admalloc.o: gb_key.h |
---|
573 | admalloc.o: gb_local.h |
---|
574 | admalloc.o: gb_main.h |
---|
575 | admalloc.o: gb_memory.h |
---|
576 | admalloc.o: gb_prot.h |
---|
577 | admalloc.o: gb_storage.h |
---|
578 | admalloc.o: gb_tune.h |
---|
579 | admalloc.o: $(ARBHOME)/INCLUDE/arb_backtrace.h |
---|
580 | admalloc.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
581 | admalloc.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
582 | admalloc.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
583 | admalloc.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
584 | admalloc.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
585 | admalloc.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
586 | admalloc.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
587 | admalloc.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
588 | admalloc.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
589 | |
---|
590 | admap.o: ad_prot.h |
---|
591 | admap.o: arb_assert.h |
---|
592 | admap.o: arbdb.h |
---|
593 | admap.o: arbdb_base.h |
---|
594 | admap.o: gb_data.h |
---|
595 | admap.o: gb_header.h |
---|
596 | admap.o: gb_index.h |
---|
597 | admap.o: gb_key.h |
---|
598 | admap.o: gb_local.h |
---|
599 | admap.o: gb_main.h |
---|
600 | admap.o: gb_map.h |
---|
601 | admap.o: gb_memory.h |
---|
602 | admap.o: gb_prot.h |
---|
603 | admap.o: gb_storage.h |
---|
604 | admap.o: gb_tune.h |
---|
605 | admap.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
606 | admap.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
607 | admap.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
608 | admap.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
609 | admap.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
610 | admap.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
611 | admap.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
612 | admap.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
613 | admap.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
614 | admap.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
615 | admap.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
616 | |
---|
617 | admatch.o: ad_prot.h |
---|
618 | admatch.o: arb_assert.h |
---|
619 | admatch.o: arbdb.h |
---|
620 | admatch.o: arbdb_base.h |
---|
621 | admatch.o: gb_local.h |
---|
622 | admatch.o: gb_prot.h |
---|
623 | admatch.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
624 | admatch.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
625 | admatch.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
626 | admatch.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
627 | admatch.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
628 | admatch.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
629 | admatch.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
630 | admatch.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
631 | admatch.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
632 | admatch.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
633 | |
---|
634 | admath.o: ad_prot.h |
---|
635 | admath.o: arb_assert.h |
---|
636 | admath.o: arbdb.h |
---|
637 | admath.o: arbdb_base.h |
---|
638 | admath.o: gb_local.h |
---|
639 | admath.o: gb_prot.h |
---|
640 | admath.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
641 | admath.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
642 | admath.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
643 | admath.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
644 | admath.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
645 | admath.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
646 | admath.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
647 | admath.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
648 | admath.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
649 | |
---|
650 | adname.o: ad_config.h |
---|
651 | adname.o: ad_prot.h |
---|
652 | adname.o: ad_t_prot.h |
---|
653 | adname.o: arb_assert.h |
---|
654 | adname.o: arbdb.h |
---|
655 | adname.o: arbdb_base.h |
---|
656 | adname.o: arbdbt.h |
---|
657 | adname.o: gb_local.h |
---|
658 | adname.o: gb_prot.h |
---|
659 | adname.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
660 | adname.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
661 | adname.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
662 | adname.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
663 | adname.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
664 | adname.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
665 | adname.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
666 | adname.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
667 | adname.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
668 | adname.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
669 | adname.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
670 | adname.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
671 | |
---|
672 | adoptimize.o: ad_prot.h |
---|
673 | adoptimize.o: ad_t_prot.h |
---|
674 | adoptimize.o: arb_assert.h |
---|
675 | adoptimize.o: arbdb.h |
---|
676 | adoptimize.o: arbdb_base.h |
---|
677 | adoptimize.o: arbdbt.h |
---|
678 | adoptimize.o: gb_compress.h |
---|
679 | adoptimize.o: gb_data.h |
---|
680 | adoptimize.o: gb_dict.h |
---|
681 | adoptimize.o: gb_header.h |
---|
682 | adoptimize.o: gb_key.h |
---|
683 | adoptimize.o: gb_local.h |
---|
684 | adoptimize.o: gb_main.h |
---|
685 | adoptimize.o: gb_memory.h |
---|
686 | adoptimize.o: gb_prot.h |
---|
687 | adoptimize.o: gb_storage.h |
---|
688 | adoptimize.o: gb_tune.h |
---|
689 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
690 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
691 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
692 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
693 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
694 | adoptimize.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
695 | adoptimize.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
696 | adoptimize.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
697 | adoptimize.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
698 | adoptimize.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
699 | |
---|
700 | adperl.o: ad_prot.h |
---|
701 | adperl.o: adperl.h |
---|
702 | adperl.o: arb_assert.h |
---|
703 | adperl.o: arbdb.h |
---|
704 | adperl.o: arbdb_base.h |
---|
705 | adperl.o: gb_local.h |
---|
706 | adperl.o: gb_prot.h |
---|
707 | adperl.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
708 | adperl.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
709 | adperl.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
710 | adperl.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
711 | adperl.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
712 | adperl.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
713 | adperl.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
714 | adperl.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
715 | adperl.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
716 | |
---|
717 | adquery.o: ad_prot.h |
---|
718 | adquery.o: arb_assert.h |
---|
719 | adquery.o: arbdb.h |
---|
720 | adquery.o: arbdb_base.h |
---|
721 | adquery.o: gb_aci.h |
---|
722 | adquery.o: gb_comm.h |
---|
723 | adquery.o: gb_data.h |
---|
724 | adquery.o: gb_header.h |
---|
725 | adquery.o: gb_index.h |
---|
726 | adquery.o: gb_key.h |
---|
727 | adquery.o: gb_local.h |
---|
728 | adquery.o: gb_localdata.h |
---|
729 | adquery.o: gb_main.h |
---|
730 | adquery.o: gb_memory.h |
---|
731 | adquery.o: gb_prot.h |
---|
732 | adquery.o: gb_ta.h |
---|
733 | adquery.o: gb_tune.h |
---|
734 | adquery.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
735 | adquery.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
736 | adquery.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
737 | adquery.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
738 | adquery.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
739 | adquery.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
740 | adquery.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
741 | adquery.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
742 | adquery.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
743 | adquery.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
744 | |
---|
745 | adRevCompl.o: ad_prot.h |
---|
746 | adRevCompl.o: ad_t_prot.h |
---|
747 | adRevCompl.o: arb_assert.h |
---|
748 | adRevCompl.o: arbdb.h |
---|
749 | adRevCompl.o: arbdb_base.h |
---|
750 | adRevCompl.o: arbdbt.h |
---|
751 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
752 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
753 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
754 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
755 | adRevCompl.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
756 | adRevCompl.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
757 | adRevCompl.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
758 | adRevCompl.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
759 | adRevCompl.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
760 | |
---|
761 | adseqcompr.o: ad_prot.h |
---|
762 | adseqcompr.o: ad_t_prot.h |
---|
763 | adseqcompr.o: arb_assert.h |
---|
764 | adseqcompr.o: arbdb.h |
---|
765 | adseqcompr.o: arbdb_base.h |
---|
766 | adseqcompr.o: arbdbt.h |
---|
767 | adseqcompr.o: gb_data.h |
---|
768 | adseqcompr.o: gb_header.h |
---|
769 | adseqcompr.o: gb_key.h |
---|
770 | adseqcompr.o: gb_local.h |
---|
771 | adseqcompr.o: gb_main.h |
---|
772 | adseqcompr.o: gb_memory.h |
---|
773 | adseqcompr.o: gb_prot.h |
---|
774 | adseqcompr.o: gb_tune.h |
---|
775 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
776 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
777 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
778 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
779 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
780 | adseqcompr.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
781 | adseqcompr.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
782 | adseqcompr.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
783 | adseqcompr.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
784 | adseqcompr.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
785 | |
---|
786 | adsocket.o: ad_prot.h |
---|
787 | adsocket.o: arb_assert.h |
---|
788 | adsocket.o: arbdb.h |
---|
789 | adsocket.o: arbdb_base.h |
---|
790 | adsocket.o: gb_comm.h |
---|
791 | adsocket.o: gb_data.h |
---|
792 | adsocket.o: gb_local.h |
---|
793 | adsocket.o: gb_localdata.h |
---|
794 | adsocket.o: gb_main.h |
---|
795 | adsocket.o: gb_memory.h |
---|
796 | adsocket.o: gb_prot.h |
---|
797 | adsocket.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
798 | adsocket.o: $(ARBHOME)/INCLUDE/arb_cs.h |
---|
799 | adsocket.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
800 | adsocket.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
801 | adsocket.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
802 | adsocket.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
803 | adsocket.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
804 | adsocket.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
805 | adsocket.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
806 | adsocket.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
807 | adsocket.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
808 | adsocket.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
809 | adsocket.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
810 | adsocket.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
811 | adsocket.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
812 | |
---|
813 | adstring.o: ad_prot.h |
---|
814 | adstring.o: arb_assert.h |
---|
815 | adstring.o: arbdb.h |
---|
816 | adstring.o: arbdb_base.h |
---|
817 | adstring.o: gb_data.h |
---|
818 | adstring.o: gb_header.h |
---|
819 | adstring.o: gb_key.h |
---|
820 | adstring.o: gb_local.h |
---|
821 | adstring.o: gb_main.h |
---|
822 | adstring.o: gb_memory.h |
---|
823 | adstring.o: gb_prot.h |
---|
824 | adstring.o: gb_tune.h |
---|
825 | adstring.o: $(ARBHOME)/INCLUDE/arb_backtrace.h |
---|
826 | adstring.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
827 | adstring.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
828 | adstring.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
829 | adstring.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
830 | adstring.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
831 | adstring.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
832 | adstring.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
833 | adstring.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
834 | adstring.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
835 | adstring.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
836 | adstring.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
837 | adstring.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
838 | adstring.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
839 | adstring.o: $(ARBHOME)/INCLUDE/valgrind.h |
---|
840 | |
---|
841 | adsystem.o: ad_prot.h |
---|
842 | adsystem.o: ad_t_prot.h |
---|
843 | adsystem.o: arb_assert.h |
---|
844 | adsystem.o: arbdb.h |
---|
845 | adsystem.o: arbdb_base.h |
---|
846 | adsystem.o: arbdbt.h |
---|
847 | adsystem.o: gb_data.h |
---|
848 | adsystem.o: gb_dict.h |
---|
849 | adsystem.o: gb_header.h |
---|
850 | adsystem.o: gb_key.h |
---|
851 | adsystem.o: gb_local.h |
---|
852 | adsystem.o: gb_main.h |
---|
853 | adsystem.o: gb_memory.h |
---|
854 | adsystem.o: gb_prot.h |
---|
855 | adsystem.o: gb_tune.h |
---|
856 | adsystem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
857 | adsystem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
858 | adsystem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
859 | adsystem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
860 | adsystem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
861 | adsystem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
862 | adsystem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
863 | adsystem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
864 | adsystem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
865 | |
---|
866 | adtables.o: ad_prot.h |
---|
867 | adtables.o: ad_t_prot.h |
---|
868 | adtables.o: arb_assert.h |
---|
869 | adtables.o: arbdb.h |
---|
870 | adtables.o: arbdb_base.h |
---|
871 | adtables.o: arbdbt.h |
---|
872 | adtables.o: gb_data.h |
---|
873 | adtables.o: gb_local.h |
---|
874 | adtables.o: gb_main.h |
---|
875 | adtables.o: gb_memory.h |
---|
876 | adtables.o: gb_prot.h |
---|
877 | adtables.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
878 | adtables.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
879 | adtables.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
880 | adtables.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
881 | adtables.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
882 | adtables.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
883 | adtables.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
884 | adtables.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
885 | adtables.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
886 | |
---|
887 | adtcp.o: ad_prot.h |
---|
888 | adtcp.o: ad_t_prot.h |
---|
889 | adtcp.o: arb_assert.h |
---|
890 | adtcp.o: arbdb.h |
---|
891 | adtcp.o: arbdb_base.h |
---|
892 | adtcp.o: arbdbt.h |
---|
893 | adtcp.o: gb_local.h |
---|
894 | adtcp.o: gb_prot.h |
---|
895 | adtcp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
896 | adtcp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
897 | adtcp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
898 | adtcp.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
899 | adtcp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
900 | adtcp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
901 | adtcp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
902 | adtcp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
903 | adtcp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
904 | adtcp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
905 | adtcp.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
906 | |
---|
907 | adTest.o: ad_prot.h |
---|
908 | adTest.o: arb_assert.h |
---|
909 | adTest.o: arbdb.h |
---|
910 | adTest.o: arbdb_base.h |
---|
911 | adTest.o: gb_data.h |
---|
912 | adTest.o: gb_header.h |
---|
913 | adTest.o: gb_key.h |
---|
914 | adTest.o: gb_local.h |
---|
915 | adTest.o: gb_main.h |
---|
916 | adTest.o: gb_memory.h |
---|
917 | adTest.o: gb_prot.h |
---|
918 | adTest.o: gb_storage.h |
---|
919 | adTest.o: gb_tune.h |
---|
920 | adTest.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
921 | adTest.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
922 | adTest.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
923 | adTest.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
924 | adTest.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
925 | adTest.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
926 | adTest.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
927 | adTest.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
928 | adTest.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
929 | |
---|
930 | adtools.o: ad_prot.h |
---|
931 | adtools.o: ad_t_prot.h |
---|
932 | adtools.o: arb_assert.h |
---|
933 | adtools.o: arbdb.h |
---|
934 | adtools.o: arbdb_base.h |
---|
935 | adtools.o: arbdbt.h |
---|
936 | adtools.o: gb_data.h |
---|
937 | adtools.o: gb_local.h |
---|
938 | adtools.o: gb_main.h |
---|
939 | adtools.o: gb_memory.h |
---|
940 | adtools.o: gb_prot.h |
---|
941 | adtools.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
942 | adtools.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
943 | adtools.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
944 | adtools.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
945 | adtools.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
946 | adtools.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
947 | adtools.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
948 | adtools.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
949 | adtools.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
950 | adtools.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
951 | adtools.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
952 | adtools.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
953 | adtools.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
954 | |
---|
955 | adtree.o: ad_prot.h |
---|
956 | adtree.o: ad_t_prot.h |
---|
957 | adtree.o: arb_assert.h |
---|
958 | adtree.o: arbdb.h |
---|
959 | adtree.o: arbdb_base.h |
---|
960 | adtree.o: arbdbt.h |
---|
961 | adtree.o: gb_local.h |
---|
962 | adtree.o: gb_prot.h |
---|
963 | adtree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
964 | adtree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
965 | adtree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
966 | adtree.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
967 | adtree.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
968 | adtree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
969 | adtree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
970 | adtree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
971 | adtree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
972 | adtree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
973 | adtree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
974 | adtree.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
975 | |
---|
976 | adtune.o: gb_tune.h |
---|
977 | |
---|
978 | arbdb.o: ad_prot.h |
---|
979 | arbdb.o: arb_assert.h |
---|
980 | arbdb.o: arbdb.h |
---|
981 | arbdb.o: arbdb_base.h |
---|
982 | arbdb.o: gb_cb.h |
---|
983 | arbdb.o: gb_comm.h |
---|
984 | arbdb.o: gb_compress.h |
---|
985 | arbdb.o: gb_data.h |
---|
986 | arbdb.o: gb_header.h |
---|
987 | arbdb.o: gb_key.h |
---|
988 | arbdb.o: gb_local.h |
---|
989 | arbdb.o: gb_localdata.h |
---|
990 | arbdb.o: gb_main.h |
---|
991 | arbdb.o: gb_memory.h |
---|
992 | arbdb.o: gb_prot.h |
---|
993 | arbdb.o: gb_storage.h |
---|
994 | arbdb.o: gb_ta.h |
---|
995 | arbdb.o: gb_ts.h |
---|
996 | arbdb.o: gb_tune.h |
---|
997 | arbdb.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
998 | arbdb.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
999 | arbdb.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1000 | arbdb.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1001 | arbdb.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1002 | arbdb.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1003 | arbdb.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1004 | arbdb.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1005 | arbdb.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1006 | arbdb.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1007 | |
---|
1008 | arbdbpp.o: ad_prot.h |
---|
1009 | arbdbpp.o: arb_assert.h |
---|
1010 | arbdbpp.o: arbdb.h |
---|
1011 | arbdbpp.o: arbdb_base.h |
---|
1012 | arbdbpp.o: gb_local.h |
---|
1013 | arbdbpp.o: gb_prot.h |
---|
1014 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1015 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1016 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1017 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1018 | arbdbpp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1019 | arbdbpp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1020 | arbdbpp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1021 | arbdbpp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1022 | arbdbpp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|