source: branches/gcc/ARBDB/Makefile

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