source: tags/ms_r17q2/ARBDB/Makefile

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