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