source: tags/ms_r16q3/ARBDB/Makefile

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