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/stringize.h |
---|
186 | ad_cb.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
187 | ad_cb.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
188 | ad_cb.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
189 | |
---|
190 | ad_colorset.o: ad_colorset.h |
---|
191 | ad_colorset.o: ad_prot.h |
---|
192 | ad_colorset.o: ad_t_prot.h |
---|
193 | ad_colorset.o: arbdb.h |
---|
194 | ad_colorset.o: arbdb_base.h |
---|
195 | ad_colorset.o: arbdbt.h |
---|
196 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
197 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
198 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
199 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
200 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
201 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
202 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
203 | ad_colorset.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
204 | ad_colorset.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
205 | ad_colorset.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
206 | ad_colorset.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
207 | ad_colorset.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
208 | ad_colorset.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
209 | ad_colorset.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
210 | ad_colorset.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
211 | ad_colorset.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
212 | ad_colorset.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
213 | ad_colorset.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
214 | |
---|
215 | ad_config.o: ad_config.h |
---|
216 | ad_config.o: ad_prot.h |
---|
217 | ad_config.o: ad_t_prot.h |
---|
218 | ad_config.o: arbdb.h |
---|
219 | ad_config.o: arbdb_base.h |
---|
220 | ad_config.o: arbdbt.h |
---|
221 | ad_config.o: gb_local.h |
---|
222 | ad_config.o: gb_prot.h |
---|
223 | ad_config.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
224 | ad_config.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
225 | ad_config.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
226 | ad_config.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
227 | ad_config.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
228 | ad_config.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
229 | ad_config.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
230 | ad_config.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
231 | ad_config.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
232 | ad_config.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
233 | ad_config.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
234 | ad_config.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
235 | ad_config.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
236 | ad_config.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
237 | ad_config.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
238 | ad_config.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
239 | ad_config.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
240 | ad_config.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
241 | ad_config.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
242 | ad_config.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
243 | |
---|
244 | ad_core.o: ad_hcb.h |
---|
245 | ad_core.o: ad_prot.h |
---|
246 | ad_core.o: arbdb.h |
---|
247 | ad_core.o: arbdb_base.h |
---|
248 | ad_core.o: gb_cb.h |
---|
249 | ad_core.o: gb_data.h |
---|
250 | ad_core.o: gb_header.h |
---|
251 | ad_core.o: gb_index.h |
---|
252 | ad_core.o: gb_key.h |
---|
253 | ad_core.o: gb_local.h |
---|
254 | ad_core.o: gb_localdata.h |
---|
255 | ad_core.o: gb_main.h |
---|
256 | ad_core.o: gb_memory.h |
---|
257 | ad_core.o: gb_prot.h |
---|
258 | ad_core.o: gb_storage.h |
---|
259 | ad_core.o: gb_ts.h |
---|
260 | ad_core.o: gb_tune.h |
---|
261 | ad_core.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
262 | ad_core.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
263 | ad_core.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
264 | ad_core.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
265 | ad_core.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
266 | ad_core.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
267 | ad_core.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
268 | ad_core.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
269 | ad_core.o: $(ARBHOME)/INCLUDE/cb.h |
---|
270 | ad_core.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
271 | ad_core.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
272 | ad_core.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
273 | ad_core.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
274 | ad_core.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
275 | ad_core.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
276 | ad_core.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
277 | ad_core.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
278 | ad_core.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
279 | ad_core.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
280 | |
---|
281 | ad_load.o: ad_io_inline.h |
---|
282 | ad_load.o: ad_prot.h |
---|
283 | ad_load.o: ad_t_prot.h |
---|
284 | ad_load.o: arbdb.h |
---|
285 | ad_load.o: arbdb_base.h |
---|
286 | ad_load.o: arbdbt.h |
---|
287 | ad_load.o: gb_cb.h |
---|
288 | ad_load.o: gb_data.h |
---|
289 | ad_load.o: gb_header.h |
---|
290 | ad_load.o: gb_key.h |
---|
291 | ad_load.o: gb_load.h |
---|
292 | ad_load.o: gb_local.h |
---|
293 | ad_load.o: gb_localdata.h |
---|
294 | ad_load.o: gb_main.h |
---|
295 | ad_load.o: gb_map.h |
---|
296 | ad_load.o: gb_memory.h |
---|
297 | ad_load.o: gb_prot.h |
---|
298 | ad_load.o: gb_storage.h |
---|
299 | ad_load.o: gb_tune.h |
---|
300 | ad_load.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
301 | ad_load.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
302 | ad_load.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
303 | ad_load.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
304 | ad_load.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
305 | ad_load.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
306 | ad_load.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
307 | ad_load.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
308 | ad_load.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
309 | ad_load.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
310 | ad_load.o: $(ARBHOME)/INCLUDE/arb_zfile.h |
---|
311 | ad_load.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
312 | ad_load.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
313 | ad_load.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
---|
314 | ad_load.o: $(ARBHOME)/INCLUDE/cb.h |
---|
315 | ad_load.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
316 | ad_load.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
317 | ad_load.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
318 | ad_load.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
319 | ad_load.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
320 | ad_load.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
321 | ad_load.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
322 | ad_load.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
323 | ad_load.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
324 | ad_load.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
325 | ad_load.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
326 | ad_load.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
327 | |
---|
328 | ad_save_load.o: ad_io_inline.h |
---|
329 | ad_save_load.o: ad_prot.h |
---|
330 | ad_save_load.o: arbdb.h |
---|
331 | ad_save_load.o: arbdb_base.h |
---|
332 | ad_save_load.o: gb_cb.h |
---|
333 | ad_save_load.o: gb_data.h |
---|
334 | ad_save_load.o: gb_header.h |
---|
335 | ad_save_load.o: gb_key.h |
---|
336 | ad_save_load.o: gb_load.h |
---|
337 | ad_save_load.o: gb_local.h |
---|
338 | ad_save_load.o: gb_main.h |
---|
339 | ad_save_load.o: gb_map.h |
---|
340 | ad_save_load.o: gb_memory.h |
---|
341 | ad_save_load.o: gb_prot.h |
---|
342 | ad_save_load.o: gb_storage.h |
---|
343 | ad_save_load.o: gb_tune.h |
---|
344 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
345 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
346 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
347 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
348 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
349 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
350 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
351 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
352 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
353 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
354 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
355 | ad_save_load.o: $(ARBHOME)/INCLUDE/arb_zfile.h |
---|
356 | ad_save_load.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
357 | ad_save_load.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
358 | ad_save_load.o: $(ARBHOME)/INCLUDE/cb.h |
---|
359 | ad_save_load.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
360 | ad_save_load.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
361 | ad_save_load.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
362 | ad_save_load.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
363 | ad_save_load.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
364 | ad_save_load.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
365 | ad_save_load.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
366 | ad_save_load.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
367 | ad_save_load.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
368 | ad_save_load.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
369 | ad_save_load.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
370 | ad_save_load.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
371 | |
---|
372 | adali.o: ad_prot.h |
---|
373 | adali.o: ad_t_prot.h |
---|
374 | adali.o: adGene.h |
---|
375 | adali.o: arbdb.h |
---|
376 | adali.o: arbdb_base.h |
---|
377 | adali.o: arbdbt.h |
---|
378 | adali.o: gb_local.h |
---|
379 | adali.o: gb_prot.h |
---|
380 | adali.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
381 | adali.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
382 | adali.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
383 | adali.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
384 | adali.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
385 | adali.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
386 | adali.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
387 | adali.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
388 | adali.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
389 | adali.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
390 | adali.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
391 | adali.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
392 | adali.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
393 | adali.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
394 | adali.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
395 | adali.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
396 | adali.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
397 | adali.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
398 | adali.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
399 | adali.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
400 | |
---|
401 | adcache.o: ad_prot.h |
---|
402 | adcache.o: arbdb.h |
---|
403 | adcache.o: arbdb_base.h |
---|
404 | adcache.o: gb_cb.h |
---|
405 | adcache.o: gb_data.h |
---|
406 | adcache.o: gb_local.h |
---|
407 | adcache.o: gb_main.h |
---|
408 | adcache.o: gb_memory.h |
---|
409 | adcache.o: gb_prot.h |
---|
410 | adcache.o: gb_storage.h |
---|
411 | adcache.o: gb_tune.h |
---|
412 | adcache.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
413 | adcache.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
414 | adcache.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
415 | adcache.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
416 | adcache.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
417 | adcache.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
418 | adcache.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
419 | adcache.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
420 | adcache.o: $(ARBHOME)/INCLUDE/cb.h |
---|
421 | adcache.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
422 | adcache.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
423 | adcache.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
424 | adcache.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
425 | adcache.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
426 | adcache.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
427 | adcache.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
428 | adcache.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
429 | adcache.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
430 | adcache.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
431 | |
---|
432 | adChangeKey.o: ad_prot.h |
---|
433 | adChangeKey.o: ad_t_prot.h |
---|
434 | adChangeKey.o: arbdb.h |
---|
435 | adChangeKey.o: arbdb_base.h |
---|
436 | adChangeKey.o: arbdbt.h |
---|
437 | adChangeKey.o: gb_local.h |
---|
438 | adChangeKey.o: gb_prot.h |
---|
439 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
440 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
441 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
442 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
443 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
444 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
445 | adChangeKey.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
446 | adChangeKey.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
447 | adChangeKey.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
448 | adChangeKey.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
449 | adChangeKey.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
450 | adChangeKey.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
451 | adChangeKey.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
452 | adChangeKey.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
453 | adChangeKey.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
454 | adChangeKey.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
455 | adChangeKey.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
456 | |
---|
457 | adcomm.o: ad_prot.h |
---|
458 | adcomm.o: arbdb.h |
---|
459 | adcomm.o: arbdb_base.h |
---|
460 | adcomm.o: gb_cb.h |
---|
461 | adcomm.o: gb_comm.h |
---|
462 | adcomm.o: gb_data.h |
---|
463 | adcomm.o: gb_header.h |
---|
464 | adcomm.o: gb_key.h |
---|
465 | adcomm.o: gb_local.h |
---|
466 | adcomm.o: gb_localdata.h |
---|
467 | adcomm.o: gb_main.h |
---|
468 | adcomm.o: gb_memory.h |
---|
469 | adcomm.o: gb_prot.h |
---|
470 | adcomm.o: gb_storage.h |
---|
471 | adcomm.o: gb_tune.h |
---|
472 | adcomm.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
473 | adcomm.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
474 | adcomm.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
475 | adcomm.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
476 | adcomm.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
477 | adcomm.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
478 | adcomm.o: $(ARBHOME)/INCLUDE/arb_signal.h |
---|
479 | adcomm.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
480 | adcomm.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
481 | adcomm.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
482 | adcomm.o: $(ARBHOME)/INCLUDE/cb.h |
---|
483 | adcomm.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
484 | adcomm.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
485 | adcomm.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
486 | adcomm.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
487 | adcomm.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
488 | adcomm.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
489 | adcomm.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
490 | adcomm.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
491 | adcomm.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
492 | adcomm.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
493 | adcomm.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
494 | |
---|
495 | adcompr.o: ad_prot.h |
---|
496 | adcompr.o: ad_t_prot.h |
---|
497 | adcompr.o: arbdb.h |
---|
498 | adcompr.o: arbdb_base.h |
---|
499 | adcompr.o: arbdbt.h |
---|
500 | adcompr.o: gb_cb.h |
---|
501 | adcompr.o: gb_compress.h |
---|
502 | adcompr.o: gb_data.h |
---|
503 | adcompr.o: gb_header.h |
---|
504 | adcompr.o: gb_key.h |
---|
505 | adcompr.o: gb_local.h |
---|
506 | adcompr.o: gb_localdata.h |
---|
507 | adcompr.o: gb_main.h |
---|
508 | adcompr.o: gb_memory.h |
---|
509 | adcompr.o: gb_prot.h |
---|
510 | adcompr.o: gb_storage.h |
---|
511 | adcompr.o: gb_t_prot.h |
---|
512 | adcompr.o: gb_tune.h |
---|
513 | adcompr.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
514 | adcompr.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
515 | adcompr.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
516 | adcompr.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
517 | adcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
518 | adcompr.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
519 | adcompr.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
520 | adcompr.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
521 | adcompr.o: $(ARBHOME)/INCLUDE/cb.h |
---|
522 | adcompr.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
523 | adcompr.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
524 | adcompr.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
525 | adcompr.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
526 | adcompr.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
527 | adcompr.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
528 | adcompr.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
529 | adcompr.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
530 | adcompr.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
531 | adcompr.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
532 | adcompr.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
533 | |
---|
534 | adExperiment.o: ad_prot.h |
---|
535 | adExperiment.o: ad_t_prot.h |
---|
536 | adExperiment.o: arbdb.h |
---|
537 | adExperiment.o: arbdb_base.h |
---|
538 | adExperiment.o: arbdbt.h |
---|
539 | adExperiment.o: gb_local.h |
---|
540 | adExperiment.o: gb_prot.h |
---|
541 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
542 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
543 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
544 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
545 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
546 | adExperiment.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
547 | adExperiment.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
548 | adExperiment.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
549 | adExperiment.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
550 | adExperiment.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
551 | adExperiment.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
552 | adExperiment.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
553 | adExperiment.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
554 | adExperiment.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
555 | adExperiment.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
556 | adExperiment.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
557 | |
---|
558 | adfile.o: ad_prot.h |
---|
559 | adfile.o: arbdb.h |
---|
560 | adfile.o: arbdb_base.h |
---|
561 | adfile.o: gb_load.h |
---|
562 | adfile.o: gb_local.h |
---|
563 | adfile.o: gb_prot.h |
---|
564 | adfile.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
565 | adfile.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
566 | adfile.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
567 | adfile.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
568 | adfile.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
569 | adfile.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
570 | adfile.o: $(ARBHOME)/INCLUDE/arb_pathlen.h |
---|
571 | adfile.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
572 | adfile.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
573 | adfile.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
574 | adfile.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
575 | adfile.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
576 | adfile.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
577 | adfile.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
578 | adfile.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
579 | adfile.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
580 | adfile.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
581 | adfile.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
582 | adfile.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
583 | adfile.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
584 | adfile.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
585 | |
---|
586 | adGene.o: ad_prot.h |
---|
587 | adGene.o: ad_t_prot.h |
---|
588 | adGene.o: adGene.h |
---|
589 | adGene.o: arbdb.h |
---|
590 | adGene.o: arbdb_base.h |
---|
591 | adGene.o: arbdbt.h |
---|
592 | adGene.o: gb_local.h |
---|
593 | adGene.o: gb_prot.h |
---|
594 | adGene.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
595 | adGene.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
596 | adGene.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
597 | adGene.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
598 | adGene.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
599 | adGene.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
600 | adGene.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
601 | adGene.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
602 | adGene.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
603 | adGene.o: $(ARBHOME)/INCLUDE/arb_unit_test.h |
---|
604 | adGene.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
605 | adGene.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
606 | adGene.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
607 | adGene.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
608 | adGene.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
609 | adGene.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
610 | adGene.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
611 | adGene.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
612 | adGene.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
613 | adGene.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
614 | adGene.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
615 | |
---|
616 | adhash.o: ad_prot.h |
---|
617 | adhash.o: arbdb.h |
---|
618 | adhash.o: arbdb_base.h |
---|
619 | adhash.o: gb_data.h |
---|
620 | adhash.o: gb_hashindex.h |
---|
621 | adhash.o: gb_local.h |
---|
622 | adhash.o: gb_memory.h |
---|
623 | adhash.o: gb_prot.h |
---|
624 | adhash.o: gb_storage.h |
---|
625 | adhash.o: gb_tune.h |
---|
626 | adhash.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
627 | adhash.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
628 | adhash.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
629 | adhash.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
630 | adhash.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
631 | adhash.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
632 | adhash.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
633 | adhash.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
634 | adhash.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
635 | adhash.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
636 | adhash.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
637 | adhash.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
638 | adhash.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
639 | adhash.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
640 | adhash.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
641 | adhash.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
642 | |
---|
643 | adhashtools.o: ad_prot.h |
---|
644 | adhashtools.o: ad_t_prot.h |
---|
645 | adhashtools.o: arbdb.h |
---|
646 | adhashtools.o: arbdb_base.h |
---|
647 | adhashtools.o: arbdbt.h |
---|
648 | adhashtools.o: gb_local.h |
---|
649 | adhashtools.o: gb_prot.h |
---|
650 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
651 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
652 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
653 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
654 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
655 | adhashtools.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
656 | adhashtools.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
657 | adhashtools.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
658 | adhashtools.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
659 | adhashtools.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
660 | adhashtools.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
661 | adhashtools.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
662 | adhashtools.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
663 | adhashtools.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
664 | adhashtools.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
665 | adhashtools.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
666 | |
---|
667 | adindex.o: ad_cb_prot.h |
---|
668 | adindex.o: ad_prot.h |
---|
669 | adindex.o: arbdb.h |
---|
670 | adindex.o: arbdb_base.h |
---|
671 | adindex.o: gb_cb.h |
---|
672 | adindex.o: gb_data.h |
---|
673 | adindex.o: gb_hashindex.h |
---|
674 | adindex.o: gb_header.h |
---|
675 | adindex.o: gb_index.h |
---|
676 | adindex.o: gb_key.h |
---|
677 | adindex.o: gb_local.h |
---|
678 | adindex.o: gb_main.h |
---|
679 | adindex.o: gb_memory.h |
---|
680 | adindex.o: gb_prot.h |
---|
681 | adindex.o: gb_storage.h |
---|
682 | adindex.o: gb_ts.h |
---|
683 | adindex.o: gb_tune.h |
---|
684 | adindex.o: gb_undo.h |
---|
685 | adindex.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
686 | adindex.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
687 | adindex.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
688 | adindex.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
689 | adindex.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
690 | adindex.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
691 | adindex.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
692 | adindex.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
693 | adindex.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
694 | adindex.o: $(ARBHOME)/INCLUDE/cb.h |
---|
695 | adindex.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
696 | adindex.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
697 | adindex.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
698 | adindex.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
699 | adindex.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
700 | adindex.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
701 | adindex.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
702 | adindex.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
703 | adindex.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
704 | adindex.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
705 | adindex.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
706 | |
---|
707 | aditem.o: ad_prot.h |
---|
708 | aditem.o: ad_t_prot.h |
---|
709 | aditem.o: arbdb.h |
---|
710 | aditem.o: arbdb_base.h |
---|
711 | aditem.o: arbdbt.h |
---|
712 | aditem.o: gb_local.h |
---|
713 | aditem.o: gb_prot.h |
---|
714 | aditem.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
715 | aditem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
716 | aditem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
717 | aditem.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
718 | aditem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
719 | aditem.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
720 | aditem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
721 | aditem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
722 | aditem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
723 | aditem.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
724 | aditem.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
725 | aditem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
726 | aditem.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
727 | aditem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
728 | aditem.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
729 | aditem.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
730 | aditem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
731 | |
---|
732 | adlang1.o: ad_cb.h |
---|
733 | adlang1.o: ad_cb_prot.h |
---|
734 | adlang1.o: ad_prot.h |
---|
735 | adlang1.o: ad_t_prot.h |
---|
736 | adlang1.o: adGene.h |
---|
737 | adlang1.o: arbdb.h |
---|
738 | adlang1.o: arbdb_base.h |
---|
739 | adlang1.o: arbdbt.h |
---|
740 | adlang1.o: gb_aci.h |
---|
741 | adlang1.o: gb_aci_impl.h |
---|
742 | adlang1.o: gb_cb.h |
---|
743 | adlang1.o: gb_data.h |
---|
744 | adlang1.o: gb_header.h |
---|
745 | adlang1.o: gb_key.h |
---|
746 | adlang1.o: gb_local.h |
---|
747 | adlang1.o: gb_main.h |
---|
748 | adlang1.o: gb_memory.h |
---|
749 | adlang1.o: gb_prot.h |
---|
750 | adlang1.o: gb_storage.h |
---|
751 | adlang1.o: gb_tune.h |
---|
752 | adlang1.o: TreeNode.h |
---|
753 | adlang1.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
754 | adlang1.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
755 | adlang1.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
756 | adlang1.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
757 | adlang1.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
758 | adlang1.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
759 | adlang1.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
760 | adlang1.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
761 | adlang1.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
762 | adlang1.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
763 | adlang1.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
764 | adlang1.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
765 | adlang1.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
766 | adlang1.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
767 | adlang1.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
768 | adlang1.o: $(ARBHOME)/INCLUDE/cb.h |
---|
769 | adlang1.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
770 | adlang1.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
771 | adlang1.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
772 | adlang1.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
773 | adlang1.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
774 | adlang1.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
775 | adlang1.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
776 | adlang1.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
777 | adlang1.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
778 | adlang1.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
779 | adlang1.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
780 | |
---|
781 | admalloc.o: ad_prot.h |
---|
782 | admalloc.o: arbdb.h |
---|
783 | admalloc.o: arbdb_base.h |
---|
784 | admalloc.o: gb_data.h |
---|
785 | admalloc.o: gb_local.h |
---|
786 | admalloc.o: gb_memory.h |
---|
787 | admalloc.o: gb_prot.h |
---|
788 | admalloc.o: gb_storage.h |
---|
789 | admalloc.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
790 | admalloc.o: $(ARBHOME)/INCLUDE/arb_backtrace.h |
---|
791 | admalloc.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
792 | admalloc.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
793 | admalloc.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
794 | admalloc.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
795 | admalloc.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
796 | admalloc.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
797 | admalloc.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
798 | admalloc.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
799 | admalloc.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
800 | admalloc.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
801 | admalloc.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
802 | admalloc.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
803 | |
---|
804 | admap.o: ad_prot.h |
---|
805 | admap.o: arbdb.h |
---|
806 | admap.o: arbdb_base.h |
---|
807 | admap.o: gb_cb.h |
---|
808 | admap.o: gb_data.h |
---|
809 | admap.o: gb_header.h |
---|
810 | admap.o: gb_index.h |
---|
811 | admap.o: gb_key.h |
---|
812 | admap.o: gb_local.h |
---|
813 | admap.o: gb_main.h |
---|
814 | admap.o: gb_map.h |
---|
815 | admap.o: gb_memory.h |
---|
816 | admap.o: gb_prot.h |
---|
817 | admap.o: gb_storage.h |
---|
818 | admap.o: gb_tune.h |
---|
819 | admap.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
820 | admap.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
821 | admap.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
822 | admap.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
823 | admap.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
824 | admap.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
825 | admap.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
826 | admap.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
827 | admap.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
828 | admap.o: $(ARBHOME)/INCLUDE/cb.h |
---|
829 | admap.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
830 | admap.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
831 | admap.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
832 | admap.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
833 | admap.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
834 | admap.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
835 | admap.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
836 | admap.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
837 | admap.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
838 | admap.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
839 | |
---|
840 | admatch.o: ad_prot.h |
---|
841 | admatch.o: ad_t_prot.h |
---|
842 | admatch.o: arbdb.h |
---|
843 | admatch.o: arbdb_base.h |
---|
844 | admatch.o: arbdbt.h |
---|
845 | admatch.o: gb_aci.h |
---|
846 | admatch.o: gb_aci_impl.h |
---|
847 | admatch.o: gb_local.h |
---|
848 | admatch.o: gb_prot.h |
---|
849 | admatch.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
850 | admatch.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
851 | admatch.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
852 | admatch.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
853 | admatch.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
854 | admatch.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
855 | admatch.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
856 | admatch.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
857 | admatch.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
858 | admatch.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
859 | admatch.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
860 | admatch.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
861 | admatch.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
862 | admatch.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
863 | admatch.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
864 | admatch.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
865 | admatch.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
866 | admatch.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
867 | admatch.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
868 | admatch.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
869 | admatch.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
870 | |
---|
871 | admath.o: ad_prot.h |
---|
872 | admath.o: arbdb.h |
---|
873 | admath.o: arbdb_base.h |
---|
874 | admath.o: gb_local.h |
---|
875 | admath.o: gb_prot.h |
---|
876 | admath.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
877 | admath.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
878 | admath.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
879 | admath.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
880 | admath.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
881 | admath.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
882 | admath.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
883 | admath.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
884 | admath.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
885 | admath.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
886 | admath.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
887 | admath.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
888 | admath.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
889 | admath.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
890 | |
---|
891 | adname.o: ad_colorset.h |
---|
892 | adname.o: ad_config.h |
---|
893 | adname.o: ad_prot.h |
---|
894 | adname.o: ad_t_prot.h |
---|
895 | adname.o: arbdb.h |
---|
896 | adname.o: arbdb_base.h |
---|
897 | adname.o: arbdbt.h |
---|
898 | adname.o: gb_local.h |
---|
899 | adname.o: gb_prot.h |
---|
900 | adname.o: TreeNode.h |
---|
901 | adname.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
902 | adname.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
903 | adname.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
904 | adname.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
905 | adname.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
906 | adname.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
907 | adname.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
908 | adname.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
909 | adname.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
910 | adname.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
911 | adname.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
912 | adname.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
913 | adname.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
914 | adname.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
915 | adname.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
916 | adname.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
917 | adname.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
918 | adname.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
919 | adname.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
920 | adname.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
921 | adname.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
922 | adname.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
923 | |
---|
924 | adoptimize.o: ad_prot.h |
---|
925 | adoptimize.o: ad_t_prot.h |
---|
926 | adoptimize.o: arbdb.h |
---|
927 | adoptimize.o: arbdb_base.h |
---|
928 | adoptimize.o: arbdbt.h |
---|
929 | adoptimize.o: gb_cb.h |
---|
930 | adoptimize.o: gb_compress.h |
---|
931 | adoptimize.o: gb_data.h |
---|
932 | adoptimize.o: gb_dict.h |
---|
933 | adoptimize.o: gb_header.h |
---|
934 | adoptimize.o: gb_key.h |
---|
935 | adoptimize.o: gb_local.h |
---|
936 | adoptimize.o: gb_main.h |
---|
937 | adoptimize.o: gb_memory.h |
---|
938 | adoptimize.o: gb_prot.h |
---|
939 | adoptimize.o: gb_storage.h |
---|
940 | adoptimize.o: gb_tune.h |
---|
941 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
942 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
943 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
944 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
945 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
946 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
947 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
948 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
949 | adoptimize.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
950 | adoptimize.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
951 | adoptimize.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
952 | adoptimize.o: $(ARBHOME)/INCLUDE/cb.h |
---|
953 | adoptimize.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
954 | adoptimize.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
955 | adoptimize.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
956 | adoptimize.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
957 | adoptimize.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
958 | adoptimize.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
959 | adoptimize.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
960 | adoptimize.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
961 | adoptimize.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
962 | adoptimize.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
963 | adoptimize.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
964 | adoptimize.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
965 | |
---|
966 | adperl.o: ad_prot.h |
---|
967 | adperl.o: adperl.h |
---|
968 | adperl.o: arbdb.h |
---|
969 | adperl.o: arbdb_base.h |
---|
970 | adperl.o: gb_local.h |
---|
971 | adperl.o: gb_prot.h |
---|
972 | adperl.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
973 | adperl.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
974 | adperl.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
975 | adperl.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
976 | adperl.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
977 | adperl.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
978 | adperl.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
979 | adperl.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
980 | adperl.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
981 | adperl.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
982 | adperl.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
983 | adperl.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
984 | adperl.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
985 | |
---|
986 | adquery.o: ad_prot.h |
---|
987 | adquery.o: ad_t_prot.h |
---|
988 | adquery.o: arbdb.h |
---|
989 | adquery.o: arbdb_base.h |
---|
990 | adquery.o: arbdbt.h |
---|
991 | adquery.o: gb_aci.h |
---|
992 | adquery.o: gb_cb.h |
---|
993 | adquery.o: gb_comm.h |
---|
994 | adquery.o: gb_data.h |
---|
995 | adquery.o: gb_header.h |
---|
996 | adquery.o: gb_index.h |
---|
997 | adquery.o: gb_key.h |
---|
998 | adquery.o: gb_local.h |
---|
999 | adquery.o: gb_localdata.h |
---|
1000 | adquery.o: gb_main.h |
---|
1001 | adquery.o: gb_memory.h |
---|
1002 | adquery.o: gb_prot.h |
---|
1003 | adquery.o: gb_storage.h |
---|
1004 | adquery.o: gb_ta.h |
---|
1005 | adquery.o: gb_tune.h |
---|
1006 | adquery.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1007 | adquery.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1008 | adquery.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1009 | adquery.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
1010 | adquery.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1011 | adquery.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1012 | adquery.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1013 | adquery.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1014 | adquery.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1015 | adquery.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1016 | adquery.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1017 | adquery.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1018 | adquery.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1019 | adquery.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1020 | adquery.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1021 | adquery.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1022 | adquery.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1023 | adquery.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1024 | adquery.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1025 | adquery.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1026 | adquery.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1027 | adquery.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1028 | adquery.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1029 | adquery.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1030 | |
---|
1031 | adRevCompl.o: ad_prot.h |
---|
1032 | adRevCompl.o: ad_t_prot.h |
---|
1033 | adRevCompl.o: arbdb.h |
---|
1034 | adRevCompl.o: arbdb_base.h |
---|
1035 | adRevCompl.o: arbdbt.h |
---|
1036 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1037 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1038 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1039 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1040 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1041 | adRevCompl.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1042 | adRevCompl.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1043 | adRevCompl.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1044 | adRevCompl.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1045 | adRevCompl.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1046 | adRevCompl.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1047 | adRevCompl.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1048 | adRevCompl.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1049 | adRevCompl.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1050 | adRevCompl.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1051 | adRevCompl.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1052 | |
---|
1053 | adseqcompr.o: ad_cb.h |
---|
1054 | adseqcompr.o: ad_cb_prot.h |
---|
1055 | adseqcompr.o: ad_prot.h |
---|
1056 | adseqcompr.o: ad_t_prot.h |
---|
1057 | adseqcompr.o: arbdb.h |
---|
1058 | adseqcompr.o: arbdb_base.h |
---|
1059 | adseqcompr.o: arbdbt.h |
---|
1060 | adseqcompr.o: gb_cb.h |
---|
1061 | adseqcompr.o: gb_data.h |
---|
1062 | adseqcompr.o: gb_header.h |
---|
1063 | adseqcompr.o: gb_key.h |
---|
1064 | adseqcompr.o: gb_local.h |
---|
1065 | adseqcompr.o: gb_main.h |
---|
1066 | adseqcompr.o: gb_memory.h |
---|
1067 | adseqcompr.o: gb_prot.h |
---|
1068 | adseqcompr.o: gb_storage.h |
---|
1069 | adseqcompr.o: gb_tune.h |
---|
1070 | adseqcompr.o: TreeNode.h |
---|
1071 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1072 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1073 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
1074 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1075 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
1076 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1077 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
1078 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1079 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
1080 | adseqcompr.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1081 | adseqcompr.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1082 | adseqcompr.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1083 | adseqcompr.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1084 | adseqcompr.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1085 | adseqcompr.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1086 | adseqcompr.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1087 | adseqcompr.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1088 | adseqcompr.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1089 | adseqcompr.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1090 | adseqcompr.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1091 | adseqcompr.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1092 | adseqcompr.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1093 | adseqcompr.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1094 | adseqcompr.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1095 | adseqcompr.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1096 | |
---|
1097 | adsocket.o: ad_prot.h |
---|
1098 | adsocket.o: arbdb.h |
---|
1099 | adsocket.o: arbdb_base.h |
---|
1100 | adsocket.o: gb_comm.h |
---|
1101 | adsocket.o: gb_data.h |
---|
1102 | adsocket.o: gb_local.h |
---|
1103 | adsocket.o: gb_localdata.h |
---|
1104 | adsocket.o: gb_memory.h |
---|
1105 | adsocket.o: gb_prot.h |
---|
1106 | adsocket.o: gb_storage.h |
---|
1107 | adsocket.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1108 | adsocket.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1109 | adsocket.o: $(ARBHOME)/INCLUDE/arb_cs.h |
---|
1110 | adsocket.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
1111 | adsocket.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1112 | adsocket.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
1113 | adsocket.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1114 | adsocket.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
1115 | adsocket.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1116 | adsocket.o: $(ARBHOME)/INCLUDE/arb_pathlen.h |
---|
1117 | adsocket.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
1118 | adsocket.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1119 | adsocket.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1120 | adsocket.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1121 | adsocket.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1122 | adsocket.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1123 | adsocket.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1124 | adsocket.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1125 | adsocket.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1126 | adsocket.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
1127 | adsocket.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1128 | adsocket.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1129 | adsocket.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1130 | adsocket.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1131 | adsocket.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1132 | |
---|
1133 | adstring.o: ad_prot.h |
---|
1134 | adstring.o: ad_t_prot.h |
---|
1135 | adstring.o: arbdb.h |
---|
1136 | adstring.o: arbdb_base.h |
---|
1137 | adstring.o: arbdbt.h |
---|
1138 | adstring.o: gb_aci.h |
---|
1139 | adstring.o: gb_cb.h |
---|
1140 | adstring.o: gb_data.h |
---|
1141 | adstring.o: gb_header.h |
---|
1142 | adstring.o: gb_key.h |
---|
1143 | adstring.o: gb_local.h |
---|
1144 | adstring.o: gb_main.h |
---|
1145 | adstring.o: gb_memory.h |
---|
1146 | adstring.o: gb_prot.h |
---|
1147 | adstring.o: gb_storage.h |
---|
1148 | adstring.o: gb_tune.h |
---|
1149 | adstring.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1150 | adstring.o: $(ARBHOME)/INCLUDE/arb_backtrace.h |
---|
1151 | adstring.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1152 | adstring.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
1153 | adstring.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1154 | adstring.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1155 | adstring.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1156 | adstring.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1157 | adstring.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1158 | adstring.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1159 | adstring.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1160 | adstring.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1161 | adstring.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1162 | adstring.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1163 | adstring.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1164 | adstring.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1165 | adstring.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1166 | adstring.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1167 | adstring.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1168 | adstring.o: $(ARBHOME)/INCLUDE/SigHandler.h |
---|
1169 | adstring.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1170 | adstring.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1171 | adstring.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1172 | adstring.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1173 | adstring.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1174 | adstring.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1175 | adstring.o: $(ARBHOME)/INCLUDE/valgrind.h |
---|
1176 | |
---|
1177 | adsystem.o: ad_cb.h |
---|
1178 | adsystem.o: ad_cb_prot.h |
---|
1179 | adsystem.o: ad_prot.h |
---|
1180 | adsystem.o: ad_t_prot.h |
---|
1181 | adsystem.o: arbdb.h |
---|
1182 | adsystem.o: arbdb_base.h |
---|
1183 | adsystem.o: arbdbt.h |
---|
1184 | adsystem.o: gb_cb.h |
---|
1185 | adsystem.o: gb_data.h |
---|
1186 | adsystem.o: gb_dict.h |
---|
1187 | adsystem.o: gb_header.h |
---|
1188 | adsystem.o: gb_key.h |
---|
1189 | adsystem.o: gb_local.h |
---|
1190 | adsystem.o: gb_main.h |
---|
1191 | adsystem.o: gb_memory.h |
---|
1192 | adsystem.o: gb_prot.h |
---|
1193 | adsystem.o: gb_storage.h |
---|
1194 | adsystem.o: gb_tune.h |
---|
1195 | adsystem.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1196 | adsystem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1197 | adsystem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1198 | adsystem.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1199 | adsystem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1200 | adsystem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1201 | adsystem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1202 | adsystem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1203 | adsystem.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1204 | adsystem.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1205 | adsystem.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1206 | adsystem.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1207 | adsystem.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1208 | adsystem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1209 | adsystem.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1210 | adsystem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1211 | adsystem.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1212 | adsystem.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1213 | adsystem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1214 | adsystem.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1215 | |
---|
1216 | adtcp.o: ad_prot.h |
---|
1217 | adtcp.o: ad_t_prot.h |
---|
1218 | adtcp.o: arbdb.h |
---|
1219 | adtcp.o: arbdb_base.h |
---|
1220 | adtcp.o: arbdbt.h |
---|
1221 | adtcp.o: gb_local.h |
---|
1222 | adtcp.o: gb_prot.h |
---|
1223 | adtcp.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1224 | adtcp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1225 | adtcp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1226 | adtcp.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1227 | adtcp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1228 | adtcp.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1229 | adtcp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1230 | adtcp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1231 | adtcp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1232 | adtcp.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1233 | adtcp.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1234 | adtcp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1235 | adtcp.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1236 | adtcp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1237 | adtcp.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1238 | adtcp.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1239 | adtcp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1240 | adtcp.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1241 | |
---|
1242 | adTest.o: ad_prot.h |
---|
1243 | adTest.o: arbdb.h |
---|
1244 | adTest.o: arbdb_base.h |
---|
1245 | adTest.o: gb_cb.h |
---|
1246 | adTest.o: gb_data.h |
---|
1247 | adTest.o: gb_header.h |
---|
1248 | adTest.o: gb_key.h |
---|
1249 | adTest.o: gb_local.h |
---|
1250 | adTest.o: gb_main.h |
---|
1251 | adTest.o: gb_memory.h |
---|
1252 | adTest.o: gb_prot.h |
---|
1253 | adTest.o: gb_storage.h |
---|
1254 | adTest.o: gb_tune.h |
---|
1255 | adTest.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1256 | adTest.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1257 | adTest.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1258 | adTest.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1259 | adTest.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
1260 | adTest.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1261 | adTest.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1262 | adTest.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1263 | adTest.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1264 | adTest.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1265 | adTest.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1266 | adTest.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1267 | adTest.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1268 | adTest.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1269 | adTest.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1270 | adTest.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1271 | adTest.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1272 | adTest.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1273 | adTest.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1274 | adTest.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1275 | adTest.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1276 | |
---|
1277 | adtools.o: ad_cb.h |
---|
1278 | adtools.o: ad_cb_prot.h |
---|
1279 | adtools.o: ad_prot.h |
---|
1280 | adtools.o: ad_remote.h |
---|
1281 | adtools.o: ad_t_prot.h |
---|
1282 | adtools.o: arbdb.h |
---|
1283 | adtools.o: arbdb_base.h |
---|
1284 | adtools.o: arbdbt.h |
---|
1285 | adtools.o: gb_cb.h |
---|
1286 | adtools.o: gb_data.h |
---|
1287 | adtools.o: gb_local.h |
---|
1288 | adtools.o: gb_main.h |
---|
1289 | adtools.o: gb_memory.h |
---|
1290 | adtools.o: gb_prot.h |
---|
1291 | adtools.o: gb_storage.h |
---|
1292 | adtools.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1293 | adtools.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1294 | adtools.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1295 | adtools.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
1296 | adtools.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1297 | adtools.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1298 | adtools.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
1299 | adtools.o: $(ARBHOME)/INCLUDE/arb_sort.h |
---|
1300 | adtools.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1301 | adtools.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
1302 | adtools.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1303 | adtools.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1304 | adtools.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1305 | adtools.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1306 | adtools.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1307 | adtools.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1308 | adtools.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1309 | adtools.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1310 | adtools.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1311 | adtools.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1312 | adtools.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1313 | adtools.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1314 | adtools.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1315 | adtools.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1316 | adtools.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1317 | adtools.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1318 | |
---|
1319 | adtree.o: ad_prot.h |
---|
1320 | adtree.o: ad_t_prot.h |
---|
1321 | adtree.o: arbdb.h |
---|
1322 | adtree.o: arbdb_base.h |
---|
1323 | adtree.o: arbdbt.h |
---|
1324 | adtree.o: gb_local.h |
---|
1325 | adtree.o: gb_prot.h |
---|
1326 | adtree.o: TreeNode.h |
---|
1327 | adtree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1328 | adtree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1329 | adtree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
1330 | adtree.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
1331 | adtree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1332 | adtree.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
1333 | adtree.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
1334 | adtree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1335 | adtree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1336 | adtree.o: $(ARBHOME)/INCLUDE/arb_msg_nospam.h |
---|
1337 | adtree.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
1338 | adtree.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
1339 | adtree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1340 | adtree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1341 | adtree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1342 | adtree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1343 | adtree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1344 | adtree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1345 | adtree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1346 | adtree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1347 | adtree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1348 | adtree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1349 | adtree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1350 | adtree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1351 | adtree.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1352 | |
---|
1353 | adtune.o: gb_tune.h |
---|
1354 | |
---|
1355 | arbdb.o: ad_prot.h |
---|
1356 | arbdb.o: ad_t_prot.h |
---|
1357 | arbdb.o: adperl.h |
---|
1358 | arbdb.o: arbdb.h |
---|
1359 | arbdb.o: arbdb_base.h |
---|
1360 | arbdb.o: arbdbt.h |
---|
1361 | arbdb.o: gb_cb.h |
---|
1362 | arbdb.o: gb_comm.h |
---|
1363 | arbdb.o: gb_compress.h |
---|
1364 | arbdb.o: gb_data.h |
---|
1365 | arbdb.o: gb_header.h |
---|
1366 | arbdb.o: gb_index.h |
---|
1367 | arbdb.o: gb_key.h |
---|
1368 | arbdb.o: gb_local.h |
---|
1369 | arbdb.o: gb_localdata.h |
---|
1370 | arbdb.o: gb_main.h |
---|
1371 | arbdb.o: gb_memory.h |
---|
1372 | arbdb.o: gb_prot.h |
---|
1373 | arbdb.o: gb_storage.h |
---|
1374 | arbdb.o: gb_ta.h |
---|
1375 | arbdb.o: gb_ts.h |
---|
1376 | arbdb.o: gb_tune.h |
---|
1377 | arbdb.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1378 | arbdb.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1379 | arbdb.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
1380 | arbdb.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1381 | arbdb.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
1382 | arbdb.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1383 | arbdb.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
1384 | arbdb.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1385 | arbdb.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1386 | arbdb.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1387 | arbdb.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1388 | arbdb.o: $(ARBHOME)/INCLUDE/cb.h |
---|
1389 | arbdb.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
1390 | arbdb.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
1391 | arbdb.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1392 | arbdb.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1393 | arbdb.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1394 | arbdb.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1395 | arbdb.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1396 | arbdb.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1397 | arbdb.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1398 | arbdb.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1399 | arbdb.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1400 | arbdb.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
1401 | |
---|
1402 | arbdbpp.o: ad_prot.h |
---|
1403 | arbdbpp.o: arbdb.h |
---|
1404 | arbdbpp.o: arbdb_base.h |
---|
1405 | arbdbpp.o: gb_local.h |
---|
1406 | arbdbpp.o: gb_prot.h |
---|
1407 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1408 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1409 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1410 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1411 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1412 | arbdbpp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1413 | arbdbpp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1414 | arbdbpp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1415 | arbdbpp.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1416 | arbdbpp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1417 | arbdbpp.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1418 | arbdbpp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1419 | arbdbpp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1420 | |
---|
1421 | gb_aci.o: ad_prot.h |
---|
1422 | gb_aci.o: ad_t_prot.h |
---|
1423 | gb_aci.o: arbdb.h |
---|
1424 | gb_aci.o: arbdb_base.h |
---|
1425 | gb_aci.o: arbdbt.h |
---|
1426 | gb_aci.o: gb_aci.h |
---|
1427 | gb_aci.o: gb_aci_impl.h |
---|
1428 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1429 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1430 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
1431 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1432 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_match.h |
---|
1433 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1434 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1435 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1436 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
1437 | gb_aci.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1438 | gb_aci.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1439 | gb_aci.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1440 | gb_aci.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1441 | gb_aci.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1442 | gb_aci.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1443 | gb_aci.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1444 | gb_aci.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1445 | gb_aci.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1446 | gb_aci.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1447 | gb_aci.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1448 | gb_aci.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
1449 | |
---|
1450 | TreeNode.o: ad_prot.h |
---|
1451 | TreeNode.o: ad_t_prot.h |
---|
1452 | TreeNode.o: arbdb.h |
---|
1453 | TreeNode.o: arbdb_base.h |
---|
1454 | TreeNode.o: arbdbt.h |
---|
1455 | TreeNode.o: TreeNode.h |
---|
1456 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
1457 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
1458 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
1459 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
1460 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
1461 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
1462 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
1463 | TreeNode.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
1464 | TreeNode.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
1465 | TreeNode.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
1466 | TreeNode.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
1467 | TreeNode.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
1468 | TreeNode.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
1469 | TreeNode.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
1470 | TreeNode.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
1471 | TreeNode.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
1472 | TreeNode.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
1473 | TreeNode.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
1474 | TreeNode.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|