1 | # for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt |
---|
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 | aditem.o \ |
---|
41 | adname.o \ |
---|
42 | adseqcompr.o \ |
---|
43 | adtables.o \ |
---|
44 | adtools.o \ |
---|
45 | adtree.o \ |
---|
46 | adali.o \ |
---|
47 | |
---|
48 | |
---|
49 | # c++-only objects |
---|
50 | GB_PP = \ |
---|
51 | arbdbpp.o \ |
---|
52 | |
---|
53 | # objects w/o autogenerated prototypes |
---|
54 | GB_X = \ |
---|
55 | ad_config.o \ |
---|
56 | |
---|
57 | OBJECTS = $(GB_O) $(GB_T) $(GB_PP) $(GB_X) |
---|
58 | |
---|
59 | LIB_SHARED=../lib/$(MAIN:.a=).$(SHARED_LIB_SUFFIX) |
---|
60 | |
---|
61 | # MAIN contains .a (instead of wanted .so). Translate via do_...-target |
---|
62 | it: do_$(MAIN) |
---|
63 | |
---|
64 | do_ARBDB.a: |
---|
65 | @echo "Error: MAIN='$(MAIN)' is set wrong" |
---|
66 | false |
---|
67 | |
---|
68 | do_libARBDB.a: $(LIB_SHARED) |
---|
69 | |
---|
70 | $(LIB_SHARED): $(OBJECTS) |
---|
71 | $(LINK_SHARED_LIB) $(LIB_SHARED) $(OBJECTS) |
---|
72 | |
---|
73 | .cxx.o: |
---|
74 | $(A_CXX) $(shared_cflags) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) |
---|
75 | |
---|
76 | proto: global_proto local_proto |
---|
77 | |
---|
78 | local_proto: lpro tlpro |
---|
79 | |
---|
80 | lpro: $(GB_O:.o=.cxx) |
---|
81 | ../AISC_MKPTPS/aisc_mkpt -c "Internal database interface" -G -w gb_prot.h -F ^gb_,^gbs_,^gbcm,^gbm_,^gbl_ $^ >gb_prot.h.tmp |
---|
82 | ../SOURCE_TOOLS/mv_if_diff gb_prot.h.tmp gb_prot.h |
---|
83 | |
---|
84 | tlpro: $(GB_T:.o=.cxx) |
---|
85 | ../AISC_MKPTPS/aisc_mkpt -c "Internal toolkit" -G -w gb_t_prot.h -F ^gb_,^gbt_,^gbs_ $^ >gb_t_prot.h.tmp |
---|
86 | ../SOURCE_TOOLS/mv_if_diff gb_t_prot.h.tmp gb_t_prot.h |
---|
87 | |
---|
88 | global_proto: pro ppro tpro cbpro |
---|
89 | |
---|
90 | pro: $(GB_O:.o=.cxx) |
---|
91 | ../AISC_MKPTPS/aisc_mkpt -c "ARB database interface" -G -P -w ad_prot.h -F ^GB_,^GEN_,^EXP_,^GBS_,^GBT_,^GBCM,^GBC_ -S callback $^ >ad_prot.h.tmp |
---|
92 | ../SOURCE_TOOLS/mv_if_diff ad_prot.h.tmp ad_prot.h |
---|
93 | |
---|
94 | cbpro: $(GB_O:.o=.cxx) |
---|
95 | ../AISC_MKPTPS/aisc_mkpt -c "ARB database callback interface" -G -w ad_cb_prot.h -F '^GB_+callback' $^ >ad_cb_prot.h.tmp |
---|
96 | ../SOURCE_TOOLS/mv_if_diff ad_cb_prot.h.tmp ad_cb_prot.h |
---|
97 | |
---|
98 | ppro: $(GB_O:.o=.cxx) |
---|
99 | ../AISC_MKPTPS/aisc_mkpt -c "ARB perl interface" -G -w ad_p_prot.h -F ^GBP_ $^ >ad_p_prot.h.tmp |
---|
100 | ../SOURCE_TOOLS/mv_if_diff ad_p_prot.h.tmp ad_p_prot.h |
---|
101 | |
---|
102 | tpro: $(GB_T:.o=.cxx) |
---|
103 | ../AISC_MKPTPS/aisc_mkpt -c "ARB toolkit" -G -w ad_t_prot.h -F ^GB_,^GEN_,^EXP_,^GBT_ $^ >ad_t_prot.h.tmp |
---|
104 | ../SOURCE_TOOLS/mv_if_diff ad_t_prot.h.tmp ad_t_prot.h |
---|
105 | |
---|
106 | wc: |
---|
107 | wc *.[ch] |
---|
108 | |
---|
109 | clean: |
---|
110 | rm -f $(OBJECTS) *.a *.so |
---|
111 | |
---|
112 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
113 | depends: $(DEPENDS) |
---|
114 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
115 | @rm $(DEPENDS) |
---|
116 | $(DEPENDS): depend.init |
---|
117 | depend.init: |
---|
118 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
119 | .c.depend: |
---|
120 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
121 | .cxx.depend: |
---|
122 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
123 | |
---|
124 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
---|
125 | |
---|
126 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
127 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
---|
128 | |
---|
129 | ad_config.o: ad_config.h |
---|
130 | ad_config.o: ad_prot.h |
---|
131 | ad_config.o: ad_t_prot.h |
---|
132 | ad_config.o: arbdb.h |
---|
133 | ad_config.o: arbdb_base.h |
---|
134 | ad_config.o: arbdbt.h |
---|
135 | ad_config.o: gb_local.h |
---|
136 | ad_config.o: gb_prot.h |
---|
137 | ad_config.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
138 | ad_config.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
139 | ad_config.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
140 | ad_config.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
141 | ad_config.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
142 | ad_config.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
143 | ad_config.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
144 | ad_config.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
145 | ad_config.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
146 | ad_config.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
147 | ad_config.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
148 | ad_config.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
149 | ad_config.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
150 | ad_config.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
151 | ad_config.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
152 | ad_config.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
153 | ad_config.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
154 | ad_config.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
155 | |
---|
156 | ad_core.o: ad_hcb.h |
---|
157 | ad_core.o: ad_prot.h |
---|
158 | ad_core.o: arbdb.h |
---|
159 | ad_core.o: arbdb_base.h |
---|
160 | ad_core.o: gb_cb.h |
---|
161 | ad_core.o: gb_data.h |
---|
162 | ad_core.o: gb_header.h |
---|
163 | ad_core.o: gb_index.h |
---|
164 | ad_core.o: gb_key.h |
---|
165 | ad_core.o: gb_local.h |
---|
166 | ad_core.o: gb_localdata.h |
---|
167 | ad_core.o: gb_main.h |
---|
168 | ad_core.o: gb_memory.h |
---|
169 | ad_core.o: gb_prot.h |
---|
170 | ad_core.o: gb_storage.h |
---|
171 | ad_core.o: gb_ts.h |
---|
172 | ad_core.o: gb_tune.h |
---|
173 | ad_core.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
174 | ad_core.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
175 | ad_core.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
176 | ad_core.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
177 | ad_core.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
178 | ad_core.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
179 | ad_core.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
180 | ad_core.o: $(ARBHOME)/INCLUDE/cb.h |
---|
181 | ad_core.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
182 | ad_core.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
183 | ad_core.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
184 | ad_core.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
185 | ad_core.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
186 | ad_core.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
187 | ad_core.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
188 | ad_core.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
189 | ad_core.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
190 | |
---|
191 | ad_load.o: ad_io_inline.h |
---|
192 | ad_load.o: ad_prot.h |
---|
193 | ad_load.o: ad_t_prot.h |
---|
194 | ad_load.o: arbdb.h |
---|
195 | ad_load.o: arbdb_base.h |
---|
196 | ad_load.o: arbdbt.h |
---|
197 | ad_load.o: gb_cb.h |
---|
198 | ad_load.o: gb_data.h |
---|
199 | ad_load.o: gb_header.h |
---|
200 | ad_load.o: gb_key.h |
---|
201 | ad_load.o: gb_load.h |
---|
202 | ad_load.o: gb_local.h |
---|
203 | ad_load.o: gb_localdata.h |
---|
204 | ad_load.o: gb_main.h |
---|
205 | ad_load.o: gb_map.h |
---|
206 | ad_load.o: gb_memory.h |
---|
207 | ad_load.o: gb_prot.h |
---|
208 | ad_load.o: gb_storage.h |
---|
209 | ad_load.o: gb_tune.h |
---|
210 | ad_load.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
211 | ad_load.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
212 | ad_load.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
213 | ad_load.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
214 | ad_load.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
215 | ad_load.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
216 | ad_load.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
217 | ad_load.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
218 | ad_load.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
219 | ad_load.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
220 | ad_load.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
221 | ad_load.o: $(ARBHOME)/INCLUDE/cb.h |
---|
222 | ad_load.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
223 | ad_load.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
224 | ad_load.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
225 | ad_load.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
226 | ad_load.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
227 | ad_load.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
228 | ad_load.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
229 | ad_load.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
230 | ad_load.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
231 | ad_load.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
232 | |
---|
233 | ad_save_load.o: ad_io_inline.h |
---|
234 | ad_save_load.o: ad_prot.h |
---|
235 | ad_save_load.o: arbdb.h |
---|
236 | ad_save_load.o: arbdb_base.h |
---|
237 | ad_save_load.o: gb_cb.h |
---|
238 | ad_save_load.o: gb_data.h |
---|
239 | ad_save_load.o: gb_header.h |
---|
240 | ad_save_load.o: gb_key.h |
---|
241 | ad_save_load.o: gb_load.h |
---|
242 | ad_save_load.o: gb_local.h |
---|
243 | ad_save_load.o: gb_main.h |
---|
244 | ad_save_load.o: gb_map.h |
---|
245 | ad_save_load.o: gb_memory.h |
---|
246 | ad_save_load.o: gb_prot.h |
---|
247 | ad_save_load.o: gb_storage.h |
---|
248 | ad_save_load.o: gb_tune.h |
---|
249 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
250 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
251 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
252 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
253 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
254 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
255 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
256 | ad_save_load.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
257 | ad_save_load.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
258 | ad_save_load.o: $(ARBHOME)/INCLUDE/cb.h |
---|
259 | ad_save_load.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
260 | ad_save_load.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
261 | ad_save_load.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
262 | ad_save_load.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
263 | ad_save_load.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
264 | ad_save_load.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
265 | ad_save_load.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
266 | ad_save_load.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
267 | ad_save_load.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
268 | ad_save_load.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
269 | |
---|
270 | adali.o: ad_prot.h |
---|
271 | adali.o: ad_t_prot.h |
---|
272 | adali.o: adGene.h |
---|
273 | adali.o: arbdb.h |
---|
274 | adali.o: arbdb_base.h |
---|
275 | adali.o: arbdbt.h |
---|
276 | adali.o: gb_local.h |
---|
277 | adali.o: gb_prot.h |
---|
278 | adali.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
279 | adali.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
280 | adali.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
281 | adali.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
282 | adali.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
283 | adali.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
284 | adali.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
285 | adali.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
286 | adali.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
287 | adali.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
288 | adali.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
289 | adali.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
290 | adali.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
291 | adali.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
292 | adali.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
293 | adali.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
294 | |
---|
295 | adcache.o: ad_prot.h |
---|
296 | adcache.o: arbdb.h |
---|
297 | adcache.o: arbdb_base.h |
---|
298 | adcache.o: gb_cb.h |
---|
299 | adcache.o: gb_data.h |
---|
300 | adcache.o: gb_local.h |
---|
301 | adcache.o: gb_main.h |
---|
302 | adcache.o: gb_memory.h |
---|
303 | adcache.o: gb_prot.h |
---|
304 | adcache.o: gb_storage.h |
---|
305 | adcache.o: gb_tune.h |
---|
306 | adcache.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
307 | adcache.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
308 | adcache.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
309 | adcache.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
310 | adcache.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
311 | adcache.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
312 | adcache.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
313 | adcache.o: $(ARBHOME)/INCLUDE/cb.h |
---|
314 | adcache.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
315 | adcache.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
316 | adcache.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
317 | adcache.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
318 | adcache.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
319 | adcache.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
320 | adcache.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
321 | adcache.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
322 | adcache.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
323 | |
---|
324 | adChangeKey.o: ad_prot.h |
---|
325 | adChangeKey.o: ad_t_prot.h |
---|
326 | adChangeKey.o: arbdb.h |
---|
327 | adChangeKey.o: arbdb_base.h |
---|
328 | adChangeKey.o: arbdbt.h |
---|
329 | adChangeKey.o: gb_local.h |
---|
330 | adChangeKey.o: gb_prot.h |
---|
331 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
332 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
333 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
334 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
335 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
336 | adChangeKey.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
337 | adChangeKey.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
338 | adChangeKey.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
339 | adChangeKey.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
340 | adChangeKey.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
341 | adChangeKey.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
342 | adChangeKey.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
343 | adChangeKey.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
344 | adChangeKey.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
345 | |
---|
346 | adcomm.o: ad_prot.h |
---|
347 | adcomm.o: arbdb.h |
---|
348 | adcomm.o: arbdb_base.h |
---|
349 | adcomm.o: gb_cb.h |
---|
350 | adcomm.o: gb_comm.h |
---|
351 | adcomm.o: gb_data.h |
---|
352 | adcomm.o: gb_header.h |
---|
353 | adcomm.o: gb_key.h |
---|
354 | adcomm.o: gb_local.h |
---|
355 | adcomm.o: gb_localdata.h |
---|
356 | adcomm.o: gb_main.h |
---|
357 | adcomm.o: gb_memory.h |
---|
358 | adcomm.o: gb_prot.h |
---|
359 | adcomm.o: gb_storage.h |
---|
360 | adcomm.o: gb_tune.h |
---|
361 | adcomm.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
362 | adcomm.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
363 | adcomm.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
364 | adcomm.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
365 | adcomm.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
366 | adcomm.o: $(ARBHOME)/INCLUDE/arb_signal.h |
---|
367 | adcomm.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
368 | adcomm.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
369 | adcomm.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
370 | adcomm.o: $(ARBHOME)/INCLUDE/cb.h |
---|
371 | adcomm.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
372 | adcomm.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
373 | adcomm.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
374 | adcomm.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
375 | adcomm.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
376 | adcomm.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
377 | adcomm.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
378 | adcomm.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
379 | adcomm.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
380 | adcomm.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
381 | |
---|
382 | adcompr.o: ad_prot.h |
---|
383 | adcompr.o: ad_t_prot.h |
---|
384 | adcompr.o: arbdb.h |
---|
385 | adcompr.o: arbdb_base.h |
---|
386 | adcompr.o: arbdbt.h |
---|
387 | adcompr.o: gb_cb.h |
---|
388 | adcompr.o: gb_compress.h |
---|
389 | adcompr.o: gb_data.h |
---|
390 | adcompr.o: gb_header.h |
---|
391 | adcompr.o: gb_key.h |
---|
392 | adcompr.o: gb_local.h |
---|
393 | adcompr.o: gb_localdata.h |
---|
394 | adcompr.o: gb_main.h |
---|
395 | adcompr.o: gb_memory.h |
---|
396 | adcompr.o: gb_prot.h |
---|
397 | adcompr.o: gb_storage.h |
---|
398 | adcompr.o: gb_t_prot.h |
---|
399 | adcompr.o: gb_tune.h |
---|
400 | adcompr.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
401 | adcompr.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
402 | adcompr.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
403 | adcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
404 | adcompr.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
405 | adcompr.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
406 | adcompr.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
407 | adcompr.o: $(ARBHOME)/INCLUDE/cb.h |
---|
408 | adcompr.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
409 | adcompr.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
410 | adcompr.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
411 | adcompr.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
412 | adcompr.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
413 | adcompr.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
414 | adcompr.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
415 | adcompr.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
416 | adcompr.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
417 | adcompr.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
418 | |
---|
419 | adExperiment.o: ad_prot.h |
---|
420 | adExperiment.o: ad_t_prot.h |
---|
421 | adExperiment.o: arbdb.h |
---|
422 | adExperiment.o: arbdb_base.h |
---|
423 | adExperiment.o: arbdbt.h |
---|
424 | adExperiment.o: gb_local.h |
---|
425 | adExperiment.o: gb_prot.h |
---|
426 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
427 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
428 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
429 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
430 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
431 | adExperiment.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
432 | adExperiment.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
433 | adExperiment.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
434 | adExperiment.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
435 | adExperiment.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
436 | adExperiment.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
437 | adExperiment.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
438 | adExperiment.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
439 | adExperiment.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
440 | |
---|
441 | adfile.o: ad_prot.h |
---|
442 | adfile.o: arbdb.h |
---|
443 | adfile.o: arbdb_base.h |
---|
444 | adfile.o: gb_load.h |
---|
445 | adfile.o: gb_local.h |
---|
446 | adfile.o: gb_prot.h |
---|
447 | adfile.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
448 | adfile.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
449 | adfile.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
450 | adfile.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
451 | adfile.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
452 | adfile.o: $(ARBHOME)/INCLUDE/arb_pathlen.h |
---|
453 | adfile.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
454 | adfile.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
455 | adfile.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
456 | adfile.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
457 | adfile.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
458 | adfile.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
459 | adfile.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
460 | adfile.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
461 | adfile.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
462 | adfile.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
463 | adfile.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
464 | adfile.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
465 | adfile.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
466 | |
---|
467 | adGene.o: ad_prot.h |
---|
468 | adGene.o: ad_t_prot.h |
---|
469 | adGene.o: adGene.h |
---|
470 | adGene.o: arbdb.h |
---|
471 | adGene.o: arbdb_base.h |
---|
472 | adGene.o: arbdbt.h |
---|
473 | adGene.o: gb_local.h |
---|
474 | adGene.o: gb_prot.h |
---|
475 | adGene.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
476 | adGene.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
477 | adGene.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
478 | adGene.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
479 | adGene.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
480 | adGene.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
481 | adGene.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
482 | adGene.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
483 | adGene.o: $(ARBHOME)/INCLUDE/arb_unit_test.h |
---|
484 | adGene.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
485 | adGene.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
486 | adGene.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
487 | adGene.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
488 | adGene.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
489 | adGene.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
490 | adGene.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
491 | adGene.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
492 | adGene.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
493 | adGene.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
494 | |
---|
495 | adhash.o: ad_prot.h |
---|
496 | adhash.o: arbdb.h |
---|
497 | adhash.o: arbdb_base.h |
---|
498 | adhash.o: gb_data.h |
---|
499 | adhash.o: gb_hashindex.h |
---|
500 | adhash.o: gb_local.h |
---|
501 | adhash.o: gb_memory.h |
---|
502 | adhash.o: gb_prot.h |
---|
503 | adhash.o: gb_storage.h |
---|
504 | adhash.o: gb_tune.h |
---|
505 | adhash.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
506 | adhash.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
507 | adhash.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
508 | adhash.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
509 | adhash.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
510 | adhash.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
511 | adhash.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
512 | adhash.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
513 | adhash.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
514 | adhash.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
515 | adhash.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
516 | adhash.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
517 | adhash.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
518 | adhash.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
519 | adhash.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
520 | |
---|
521 | adhashtools.o: ad_prot.h |
---|
522 | adhashtools.o: ad_t_prot.h |
---|
523 | adhashtools.o: arbdb.h |
---|
524 | adhashtools.o: arbdb_base.h |
---|
525 | adhashtools.o: arbdbt.h |
---|
526 | adhashtools.o: gb_local.h |
---|
527 | adhashtools.o: gb_prot.h |
---|
528 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
529 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
530 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
531 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
532 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
533 | adhashtools.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
534 | adhashtools.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
535 | adhashtools.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
536 | adhashtools.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
537 | adhashtools.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
538 | adhashtools.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
539 | adhashtools.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
540 | adhashtools.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
541 | adhashtools.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
542 | |
---|
543 | adindex.o: ad_cb_prot.h |
---|
544 | adindex.o: ad_prot.h |
---|
545 | adindex.o: arbdb.h |
---|
546 | adindex.o: arbdb_base.h |
---|
547 | adindex.o: gb_cb.h |
---|
548 | adindex.o: gb_data.h |
---|
549 | adindex.o: gb_hashindex.h |
---|
550 | adindex.o: gb_header.h |
---|
551 | adindex.o: gb_index.h |
---|
552 | adindex.o: gb_key.h |
---|
553 | adindex.o: gb_local.h |
---|
554 | adindex.o: gb_main.h |
---|
555 | adindex.o: gb_memory.h |
---|
556 | adindex.o: gb_prot.h |
---|
557 | adindex.o: gb_storage.h |
---|
558 | adindex.o: gb_ts.h |
---|
559 | adindex.o: gb_tune.h |
---|
560 | adindex.o: gb_undo.h |
---|
561 | adindex.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
562 | adindex.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
563 | adindex.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
564 | adindex.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
565 | adindex.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
566 | adindex.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
567 | adindex.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
568 | adindex.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
569 | adindex.o: $(ARBHOME)/INCLUDE/cb.h |
---|
570 | adindex.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
571 | adindex.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
572 | adindex.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
573 | adindex.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
574 | adindex.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
575 | adindex.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
576 | adindex.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
577 | adindex.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
578 | adindex.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
579 | adindex.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
580 | |
---|
581 | aditem.o: ad_prot.h |
---|
582 | aditem.o: ad_t_prot.h |
---|
583 | aditem.o: arbdb.h |
---|
584 | aditem.o: arbdb_base.h |
---|
585 | aditem.o: arbdbt.h |
---|
586 | aditem.o: gb_local.h |
---|
587 | aditem.o: gb_prot.h |
---|
588 | aditem.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
589 | aditem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
590 | aditem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
591 | aditem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
592 | aditem.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
593 | aditem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
594 | aditem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
595 | aditem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
596 | aditem.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
597 | aditem.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
598 | aditem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
599 | aditem.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
600 | aditem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
601 | aditem.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
602 | aditem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
603 | |
---|
604 | adlang1.o: ad_cb.h |
---|
605 | adlang1.o: ad_cb_prot.h |
---|
606 | adlang1.o: ad_prot.h |
---|
607 | adlang1.o: ad_t_prot.h |
---|
608 | adlang1.o: adGene.h |
---|
609 | adlang1.o: arbdb.h |
---|
610 | adlang1.o: arbdb_base.h |
---|
611 | adlang1.o: arbdbt.h |
---|
612 | adlang1.o: gb_aci.h |
---|
613 | adlang1.o: gb_cb.h |
---|
614 | adlang1.o: gb_data.h |
---|
615 | adlang1.o: gb_header.h |
---|
616 | adlang1.o: gb_key.h |
---|
617 | adlang1.o: gb_local.h |
---|
618 | adlang1.o: gb_localdata.h |
---|
619 | adlang1.o: gb_main.h |
---|
620 | adlang1.o: gb_memory.h |
---|
621 | adlang1.o: gb_prot.h |
---|
622 | adlang1.o: gb_storage.h |
---|
623 | adlang1.o: gb_tune.h |
---|
624 | adlang1.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
625 | adlang1.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
626 | adlang1.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
627 | adlang1.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
628 | adlang1.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
629 | adlang1.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
630 | adlang1.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
631 | adlang1.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
632 | adlang1.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
633 | adlang1.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
634 | adlang1.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
635 | adlang1.o: $(ARBHOME)/INCLUDE/cb.h |
---|
636 | adlang1.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
637 | adlang1.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
638 | adlang1.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
639 | adlang1.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
640 | adlang1.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
641 | adlang1.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
642 | adlang1.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
643 | adlang1.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
644 | adlang1.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
645 | adlang1.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
646 | |
---|
647 | adlink.o: ad_prot.h |
---|
648 | adlink.o: arbdb.h |
---|
649 | adlink.o: arbdb_base.h |
---|
650 | adlink.o: gb_cb.h |
---|
651 | adlink.o: gb_data.h |
---|
652 | adlink.o: gb_local.h |
---|
653 | adlink.o: gb_main.h |
---|
654 | adlink.o: gb_memory.h |
---|
655 | adlink.o: gb_prot.h |
---|
656 | adlink.o: gb_storage.h |
---|
657 | adlink.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
658 | adlink.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
659 | adlink.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
660 | adlink.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
661 | adlink.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
662 | adlink.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
663 | adlink.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
664 | adlink.o: $(ARBHOME)/INCLUDE/cb.h |
---|
665 | adlink.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
666 | adlink.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
667 | adlink.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
668 | adlink.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
669 | adlink.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
670 | adlink.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
671 | adlink.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
672 | adlink.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
673 | adlink.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
674 | |
---|
675 | admalloc.o: ad_prot.h |
---|
676 | admalloc.o: arbdb.h |
---|
677 | admalloc.o: arbdb_base.h |
---|
678 | admalloc.o: gb_data.h |
---|
679 | admalloc.o: gb_local.h |
---|
680 | admalloc.o: gb_memory.h |
---|
681 | admalloc.o: gb_prot.h |
---|
682 | admalloc.o: gb_storage.h |
---|
683 | admalloc.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
684 | admalloc.o: $(ARBHOME)/INCLUDE/arb_backtrace.h |
---|
685 | admalloc.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
686 | admalloc.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
687 | admalloc.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
688 | admalloc.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
689 | admalloc.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
690 | admalloc.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
691 | admalloc.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
692 | admalloc.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
693 | admalloc.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
694 | admalloc.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
695 | admalloc.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
696 | |
---|
697 | admap.o: ad_prot.h |
---|
698 | admap.o: arbdb.h |
---|
699 | admap.o: arbdb_base.h |
---|
700 | admap.o: gb_cb.h |
---|
701 | admap.o: gb_data.h |
---|
702 | admap.o: gb_header.h |
---|
703 | admap.o: gb_index.h |
---|
704 | admap.o: gb_key.h |
---|
705 | admap.o: gb_local.h |
---|
706 | admap.o: gb_main.h |
---|
707 | admap.o: gb_map.h |
---|
708 | admap.o: gb_memory.h |
---|
709 | admap.o: gb_prot.h |
---|
710 | admap.o: gb_storage.h |
---|
711 | admap.o: gb_tune.h |
---|
712 | admap.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
713 | admap.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
714 | admap.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
715 | admap.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
716 | admap.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
717 | admap.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
718 | admap.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
719 | admap.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
720 | admap.o: $(ARBHOME)/INCLUDE/cb.h |
---|
721 | admap.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
722 | admap.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
723 | admap.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
724 | admap.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
725 | admap.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
726 | admap.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
727 | admap.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
728 | admap.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
729 | admap.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
730 | |
---|
731 | admatch.o: ad_prot.h |
---|
732 | admatch.o: arbdb.h |
---|
733 | admatch.o: arbdb_base.h |
---|
734 | admatch.o: gb_local.h |
---|
735 | admatch.o: gb_prot.h |
---|
736 | admatch.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
737 | admatch.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
738 | admatch.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
739 | admatch.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
740 | admatch.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
741 | admatch.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
742 | admatch.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
743 | admatch.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
744 | admatch.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
745 | admatch.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
746 | admatch.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
747 | admatch.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
748 | admatch.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
749 | admatch.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
750 | |
---|
751 | admath.o: ad_prot.h |
---|
752 | admath.o: arbdb.h |
---|
753 | admath.o: arbdb_base.h |
---|
754 | admath.o: gb_local.h |
---|
755 | admath.o: gb_prot.h |
---|
756 | admath.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
757 | admath.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
758 | admath.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
759 | admath.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
760 | admath.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
761 | admath.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
762 | admath.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
763 | admath.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
764 | admath.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
765 | admath.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
766 | admath.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
767 | admath.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
768 | |
---|
769 | adname.o: ad_config.h |
---|
770 | adname.o: ad_prot.h |
---|
771 | adname.o: ad_t_prot.h |
---|
772 | adname.o: arbdb.h |
---|
773 | adname.o: arbdb_base.h |
---|
774 | adname.o: arbdbt.h |
---|
775 | adname.o: gb_local.h |
---|
776 | adname.o: gb_prot.h |
---|
777 | adname.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
778 | adname.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
779 | adname.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
780 | adname.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
781 | adname.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
782 | adname.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
783 | adname.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
784 | adname.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
785 | adname.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
786 | adname.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
787 | adname.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
788 | adname.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
789 | adname.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
790 | adname.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
791 | adname.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
792 | adname.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
793 | adname.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
794 | adname.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
795 | adname.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
796 | adname.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
797 | |
---|
798 | adoptimize.o: ad_prot.h |
---|
799 | adoptimize.o: ad_t_prot.h |
---|
800 | adoptimize.o: arbdb.h |
---|
801 | adoptimize.o: arbdb_base.h |
---|
802 | adoptimize.o: arbdbt.h |
---|
803 | adoptimize.o: gb_cb.h |
---|
804 | adoptimize.o: gb_compress.h |
---|
805 | adoptimize.o: gb_data.h |
---|
806 | adoptimize.o: gb_dict.h |
---|
807 | adoptimize.o: gb_header.h |
---|
808 | adoptimize.o: gb_key.h |
---|
809 | adoptimize.o: gb_local.h |
---|
810 | adoptimize.o: gb_main.h |
---|
811 | adoptimize.o: gb_memory.h |
---|
812 | adoptimize.o: gb_prot.h |
---|
813 | adoptimize.o: gb_storage.h |
---|
814 | adoptimize.o: gb_tune.h |
---|
815 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
816 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
817 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
818 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
819 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
820 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
821 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
822 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
823 | adoptimize.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
824 | adoptimize.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
825 | adoptimize.o: $(ARBHOME)/INCLUDE/cb.h |
---|
826 | adoptimize.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
827 | adoptimize.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
828 | adoptimize.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
829 | adoptimize.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
830 | adoptimize.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
831 | adoptimize.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
832 | adoptimize.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
833 | adoptimize.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
834 | adoptimize.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
835 | adoptimize.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
836 | adoptimize.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
837 | |
---|
838 | adperl.o: ad_prot.h |
---|
839 | adperl.o: adperl.h |
---|
840 | adperl.o: arbdb.h |
---|
841 | adperl.o: arbdb_base.h |
---|
842 | adperl.o: gb_local.h |
---|
843 | adperl.o: gb_prot.h |
---|
844 | adperl.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
845 | adperl.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
846 | adperl.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
847 | adperl.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
848 | adperl.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
849 | adperl.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
850 | adperl.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
851 | adperl.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
852 | adperl.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
853 | adperl.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
854 | adperl.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
855 | adperl.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
856 | |
---|
857 | adquery.o: ad_prot.h |
---|
858 | adquery.o: ad_t_prot.h |
---|
859 | adquery.o: arbdb.h |
---|
860 | adquery.o: arbdb_base.h |
---|
861 | adquery.o: arbdbt.h |
---|
862 | adquery.o: gb_aci.h |
---|
863 | adquery.o: gb_cb.h |
---|
864 | adquery.o: gb_comm.h |
---|
865 | adquery.o: gb_data.h |
---|
866 | adquery.o: gb_header.h |
---|
867 | adquery.o: gb_index.h |
---|
868 | adquery.o: gb_key.h |
---|
869 | adquery.o: gb_local.h |
---|
870 | adquery.o: gb_localdata.h |
---|
871 | adquery.o: gb_main.h |
---|
872 | adquery.o: gb_memory.h |
---|
873 | adquery.o: gb_prot.h |
---|
874 | adquery.o: gb_storage.h |
---|
875 | adquery.o: gb_ta.h |
---|
876 | adquery.o: gb_tune.h |
---|
877 | adquery.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
878 | adquery.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
879 | adquery.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
880 | adquery.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
881 | adquery.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
882 | adquery.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
883 | adquery.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
884 | adquery.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
885 | adquery.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
886 | adquery.o: $(ARBHOME)/INCLUDE/cb.h |
---|
887 | adquery.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
888 | adquery.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
889 | adquery.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
890 | adquery.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
891 | adquery.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
892 | adquery.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
893 | adquery.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
894 | adquery.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
895 | adquery.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
896 | adquery.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
897 | adquery.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
898 | |
---|
899 | adRevCompl.o: ad_prot.h |
---|
900 | adRevCompl.o: ad_t_prot.h |
---|
901 | adRevCompl.o: arbdb.h |
---|
902 | adRevCompl.o: arbdb_base.h |
---|
903 | adRevCompl.o: arbdbt.h |
---|
904 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
905 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
906 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
907 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
908 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
909 | adRevCompl.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
910 | adRevCompl.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
911 | adRevCompl.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
912 | adRevCompl.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
913 | adRevCompl.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
914 | adRevCompl.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
915 | adRevCompl.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
916 | adRevCompl.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
917 | adRevCompl.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
918 | |
---|
919 | adseqcompr.o: ad_cb.h |
---|
920 | adseqcompr.o: ad_cb_prot.h |
---|
921 | adseqcompr.o: ad_prot.h |
---|
922 | adseqcompr.o: ad_t_prot.h |
---|
923 | adseqcompr.o: arbdb.h |
---|
924 | adseqcompr.o: arbdb_base.h |
---|
925 | adseqcompr.o: arbdbt.h |
---|
926 | adseqcompr.o: gb_cb.h |
---|
927 | adseqcompr.o: gb_data.h |
---|
928 | adseqcompr.o: gb_header.h |
---|
929 | adseqcompr.o: gb_key.h |
---|
930 | adseqcompr.o: gb_local.h |
---|
931 | adseqcompr.o: gb_main.h |
---|
932 | adseqcompr.o: gb_memory.h |
---|
933 | adseqcompr.o: gb_prot.h |
---|
934 | adseqcompr.o: gb_storage.h |
---|
935 | adseqcompr.o: gb_tune.h |
---|
936 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
937 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
938 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
939 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
940 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
941 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
942 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
943 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
944 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
945 | adseqcompr.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
946 | adseqcompr.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
947 | adseqcompr.o: $(ARBHOME)/INCLUDE/cb.h |
---|
948 | adseqcompr.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
949 | adseqcompr.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
950 | adseqcompr.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
951 | adseqcompr.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
952 | adseqcompr.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
953 | adseqcompr.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
954 | adseqcompr.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
955 | adseqcompr.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
956 | adseqcompr.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
957 | adseqcompr.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
958 | adseqcompr.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
959 | |
---|
960 | adsocket.o: ad_prot.h |
---|
961 | adsocket.o: arbdb.h |
---|
962 | adsocket.o: arbdb_base.h |
---|
963 | adsocket.o: gb_comm.h |
---|
964 | adsocket.o: gb_data.h |
---|
965 | adsocket.o: gb_local.h |
---|
966 | adsocket.o: gb_localdata.h |
---|
967 | adsocket.o: gb_memory.h |
---|
968 | adsocket.o: gb_prot.h |
---|
969 | adsocket.o: gb_storage.h |
---|
970 | adsocket.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
971 | adsocket.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
972 | adsocket.o: $(ARBHOME)/INCLUDE/arb_cs.h |
---|
973 | adsocket.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
974 | adsocket.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
975 | adsocket.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
976 | adsocket.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
977 | adsocket.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
978 | adsocket.o: $(ARBHOME)/INCLUDE/arb_pathlen.h |
---|
979 | adsocket.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
980 | adsocket.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
981 | adsocket.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
982 | adsocket.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
983 | adsocket.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
984 | adsocket.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
985 | adsocket.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
986 | adsocket.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
987 | adsocket.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
988 | adsocket.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
989 | adsocket.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
990 | adsocket.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
991 | adsocket.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
992 | adsocket.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
993 | |
---|
994 | adstring.o: ad_prot.h |
---|
995 | adstring.o: arbdb.h |
---|
996 | adstring.o: arbdb_base.h |
---|
997 | adstring.o: gb_cb.h |
---|
998 | adstring.o: gb_data.h |
---|
999 | adstring.o: gb_header.h |
---|
1000 | adstring.o: gb_key.h |
---|
1001 | adstring.o: gb_local.h |
---|
1002 | adstring.o: gb_main.h |
---|
1003 | adstring.o: gb_memory.h |
---|
1004 | adstring.o: gb_prot.h |
---|
1005 | adstring.o: gb_storage.h |
---|
1006 | adstring.o: gb_tune.h |
---|
1007 | adstring.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1008 | adstring.o: $(ARBHOME)/INCLUDE/arb_backtrace.h |
---|
1009 | adstring.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1010 | adstring.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
1011 | adstring.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1012 | adstring.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1013 | adstring.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
1014 | adstring.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1015 | adstring.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1016 | adstring.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1017 | adstring.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1018 | adstring.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1019 | adstring.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1020 | adstring.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1021 | adstring.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1022 | adstring.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1023 | adstring.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1024 | adstring.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1025 | adstring.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
1026 | adstring.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1027 | adstring.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1028 | adstring.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1029 | adstring.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1030 | adstring.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1031 | adstring.o: $(ARBHOME)/INCLUDE/valgrind.h |
---|
1032 | |
---|
1033 | adsystem.o: ad_cb.h |
---|
1034 | adsystem.o: ad_cb_prot.h |
---|
1035 | adsystem.o: ad_prot.h |
---|
1036 | adsystem.o: ad_t_prot.h |
---|
1037 | adsystem.o: arbdb.h |
---|
1038 | adsystem.o: arbdb_base.h |
---|
1039 | adsystem.o: arbdbt.h |
---|
1040 | adsystem.o: gb_cb.h |
---|
1041 | adsystem.o: gb_data.h |
---|
1042 | adsystem.o: gb_dict.h |
---|
1043 | adsystem.o: gb_header.h |
---|
1044 | adsystem.o: gb_key.h |
---|
1045 | adsystem.o: gb_local.h |
---|
1046 | adsystem.o: gb_main.h |
---|
1047 | adsystem.o: gb_memory.h |
---|
1048 | adsystem.o: gb_prot.h |
---|
1049 | adsystem.o: gb_storage.h |
---|
1050 | adsystem.o: gb_tune.h |
---|
1051 | adsystem.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1052 | adsystem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1053 | adsystem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1054 | adsystem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1055 | adsystem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1056 | adsystem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1057 | adsystem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1058 | adsystem.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1059 | adsystem.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1060 | adsystem.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1061 | adsystem.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1062 | adsystem.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1063 | adsystem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1064 | adsystem.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1065 | adsystem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1066 | adsystem.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1067 | adsystem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1068 | adsystem.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1069 | |
---|
1070 | adtables.o: ad_cb.h |
---|
1071 | adtables.o: ad_cb_prot.h |
---|
1072 | adtables.o: ad_prot.h |
---|
1073 | adtables.o: ad_t_prot.h |
---|
1074 | adtables.o: arbdb.h |
---|
1075 | adtables.o: arbdb_base.h |
---|
1076 | adtables.o: arbdbt.h |
---|
1077 | adtables.o: gb_cb.h |
---|
1078 | adtables.o: gb_data.h |
---|
1079 | adtables.o: gb_local.h |
---|
1080 | adtables.o: gb_main.h |
---|
1081 | adtables.o: gb_memory.h |
---|
1082 | adtables.o: gb_prot.h |
---|
1083 | adtables.o: gb_storage.h |
---|
1084 | adtables.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1085 | adtables.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1086 | adtables.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1087 | adtables.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1088 | adtables.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1089 | adtables.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1090 | adtables.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1091 | adtables.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1092 | adtables.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1093 | adtables.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1094 | adtables.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1095 | adtables.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1096 | adtables.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1097 | adtables.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1098 | adtables.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1099 | adtables.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1100 | adtables.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1101 | adtables.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1102 | |
---|
1103 | adtcp.o: ad_prot.h |
---|
1104 | adtcp.o: ad_t_prot.h |
---|
1105 | adtcp.o: arbdb.h |
---|
1106 | adtcp.o: arbdb_base.h |
---|
1107 | adtcp.o: arbdbt.h |
---|
1108 | adtcp.o: gb_local.h |
---|
1109 | adtcp.o: gb_prot.h |
---|
1110 | adtcp.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1111 | adtcp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1112 | adtcp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1113 | adtcp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1114 | adtcp.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1115 | adtcp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1116 | adtcp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1117 | adtcp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1118 | adtcp.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1119 | adtcp.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1120 | adtcp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1121 | adtcp.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1122 | adtcp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1123 | adtcp.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1124 | adtcp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1125 | adtcp.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1126 | |
---|
1127 | adTest.o: ad_prot.h |
---|
1128 | adTest.o: arbdb.h |
---|
1129 | adTest.o: arbdb_base.h |
---|
1130 | adTest.o: gb_cb.h |
---|
1131 | adTest.o: gb_data.h |
---|
1132 | adTest.o: gb_header.h |
---|
1133 | adTest.o: gb_key.h |
---|
1134 | adTest.o: gb_local.h |
---|
1135 | adTest.o: gb_main.h |
---|
1136 | adTest.o: gb_memory.h |
---|
1137 | adTest.o: gb_prot.h |
---|
1138 | adTest.o: gb_storage.h |
---|
1139 | adTest.o: gb_tune.h |
---|
1140 | adTest.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1141 | adTest.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1142 | adTest.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1143 | adTest.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1144 | adTest.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1145 | adTest.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1146 | adTest.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1147 | adTest.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1148 | adTest.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1149 | adTest.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1150 | adTest.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1151 | adTest.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1152 | adTest.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1153 | adTest.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1154 | adTest.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1155 | adTest.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1156 | adTest.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1157 | |
---|
1158 | adtools.o: ad_cb.h |
---|
1159 | adtools.o: ad_cb_prot.h |
---|
1160 | adtools.o: ad_prot.h |
---|
1161 | adtools.o: ad_remote.h |
---|
1162 | adtools.o: ad_t_prot.h |
---|
1163 | adtools.o: arbdb.h |
---|
1164 | adtools.o: arbdb_base.h |
---|
1165 | adtools.o: arbdbt.h |
---|
1166 | adtools.o: gb_cb.h |
---|
1167 | adtools.o: gb_data.h |
---|
1168 | adtools.o: gb_local.h |
---|
1169 | adtools.o: gb_main.h |
---|
1170 | adtools.o: gb_memory.h |
---|
1171 | adtools.o: gb_prot.h |
---|
1172 | adtools.o: gb_storage.h |
---|
1173 | adtools.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1174 | adtools.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1175 | adtools.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1176 | adtools.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
1177 | adtools.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1178 | adtools.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
1179 | adtools.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
1180 | adtools.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1181 | adtools.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
1182 | adtools.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1183 | adtools.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1184 | adtools.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1185 | adtools.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1186 | adtools.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1187 | adtools.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1188 | adtools.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1189 | adtools.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1190 | adtools.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1191 | adtools.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1192 | adtools.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1193 | adtools.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1194 | adtools.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1195 | adtools.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1196 | adtools.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1197 | |
---|
1198 | adtree.o: ad_prot.h |
---|
1199 | adtree.o: ad_t_prot.h |
---|
1200 | adtree.o: arbdb.h |
---|
1201 | adtree.o: arbdb_base.h |
---|
1202 | adtree.o: arbdbt.h |
---|
1203 | adtree.o: gb_local.h |
---|
1204 | adtree.o: gb_prot.h |
---|
1205 | adtree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1206 | adtree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1207 | adtree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
1208 | adtree.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
1209 | adtree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1210 | adtree.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
1211 | adtree.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
1212 | adtree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1213 | adtree.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
1214 | adtree.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
1215 | adtree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1216 | adtree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1217 | adtree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1218 | adtree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1219 | adtree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1220 | adtree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1221 | adtree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1222 | adtree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1223 | adtree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1224 | adtree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1225 | adtree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1226 | adtree.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1227 | |
---|
1228 | adtune.o: gb_tune.h |
---|
1229 | |
---|
1230 | arbdb.o: ad_hcb.h |
---|
1231 | arbdb.o: ad_prot.h |
---|
1232 | arbdb.o: arbdb.h |
---|
1233 | arbdb.o: arbdb_base.h |
---|
1234 | arbdb.o: gb_cb.h |
---|
1235 | arbdb.o: gb_comm.h |
---|
1236 | arbdb.o: gb_compress.h |
---|
1237 | arbdb.o: gb_data.h |
---|
1238 | arbdb.o: gb_header.h |
---|
1239 | arbdb.o: gb_index.h |
---|
1240 | arbdb.o: gb_key.h |
---|
1241 | arbdb.o: gb_local.h |
---|
1242 | arbdb.o: gb_localdata.h |
---|
1243 | arbdb.o: gb_main.h |
---|
1244 | arbdb.o: gb_memory.h |
---|
1245 | arbdb.o: gb_prot.h |
---|
1246 | arbdb.o: gb_storage.h |
---|
1247 | arbdb.o: gb_ta.h |
---|
1248 | arbdb.o: gb_ts.h |
---|
1249 | arbdb.o: gb_tune.h |
---|
1250 | arbdb.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1251 | arbdb.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1252 | arbdb.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1253 | arbdb.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1254 | arbdb.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
1255 | arbdb.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1256 | arbdb.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1257 | arbdb.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1258 | arbdb.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1259 | arbdb.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1260 | arbdb.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1261 | arbdb.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1262 | arbdb.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1263 | arbdb.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1264 | arbdb.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1265 | arbdb.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1266 | arbdb.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1267 | arbdb.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1268 | arbdb.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1269 | |
---|
1270 | arbdbpp.o: ad_prot.h |
---|
1271 | arbdbpp.o: arbdb.h |
---|
1272 | arbdbpp.o: arbdb_base.h |
---|
1273 | arbdbpp.o: gb_local.h |
---|
1274 | arbdbpp.o: gb_prot.h |
---|
1275 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1276 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1277 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1278 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1279 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1280 | arbdbpp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1281 | arbdbpp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1282 | arbdbpp.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1283 | arbdbpp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1284 | arbdbpp.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1285 | arbdbpp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1286 | arbdbpp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|