source: trunk/ARBDB/Makefile

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