# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
.SUFFIXES: .o .cxx .depend

# objects with autogenerated prototypes (gb_prot.h + ad_prot.h + ad_k_prot.h)
GB_O = \
        ad_cb.o \
        ad_core.o \
        ad_load.o \
        ad_save_load.o \
        adcache.o  \
        adcomm.o \
        adcompr.o \
        adExperiment.o \
        adfile.o \
        adGene.o \
        adhash.o  \
        adhashtools.o \
        adindex.o \
        adlang1.o \
        admalloc.o \
        admap.o \
        admatch.o \
        admath.o \
        adoptimize.o \
        adperl.o \
        adquery.o \
        adsocket.o \
        adstring.o \
        adsystem.o \
        adtcp.o \
        adTest.o \
        adtune.o \
        arbdb.o \
        gb_aci.o \

# objects with autogenerated prototypes (gb_t_prot.h + ad_t_prot.h)
GB_T =  \
        adali.o \
        adChangeKey.o \
        aditem.o \
        adname.o \
        adRevCompl.o \
        adseqcompr.o \
        adtools.o \
        adtree.o \

# objects w/o autogenerated prototypes
GB_X =  \
        ad_colorset.o \
        ad_config.o \
        arbdbpp.o \
        TreeNode.o \

OBJECTS = $(GB_O) $(GB_T) $(GB_X)

# ---------------------------------------- check all possible objects are listed above
LISTED_OBJECTS = $(sort $(OBJECTS))
POSSIBLE_OBJECTS = $(sort $(subst .cxx,.o,$(wildcard *.cxx)))

UNLISTED_OBJECTS = $(filter-out $(LISTED_OBJECTS), $(POSSIBLE_OBJECTS))

# ---------------------------------------- allow misaligned data access in ARBDB
ARBDB_CFLAGS := $(cflags)
ifeq ('$(USE_GCC_50_OR_HIGHER)', 'yes')
 ifneq ('$(SANITIZE)', '0')
  ARBDB_CFLAGS := $(cflags) -fno-sanitize=alignment
 endif
endif
# ----------------------------------------

LIB_SHARED=../lib/$(MAIN:.a=).$(SHARED_LIB_SUFFIX)

# MAIN contains .a (instead of wanted .so). Translate via do_...-target
it: do_$(MAIN)

warn_unlisted: Makefile
ifneq ('$(UNLISTED_OBJECTS)','')
	$(error There are objects which should be listed in Makefile: $(UNLISTED_OBJECTS))
else
	true
endif

do_ARBDB.a:
	$(error MAIN='$(MAIN)' is set wrong)

do_libARBDB.a: $(LIB_SHARED) warn_unlisted

$(LIB_SHARED): $(OBJECTS)
	$(LINK_SHARED_LIB) $(LIB_SHARED) $(OBJECTS)

.cxx.o:
	$(A_CXX) $(shared_cflags) $(ARBDB_CFLAGS) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $<

proto:	global_proto local_proto

local_proto: lpro tlpro

lpro: $(GB_O:.o=.cxx)
	../AISC_MKPTPS/aisc_mkpt -c "Internal database interface" -G -w gb_prot.h -F ^gb_,^gbs_,^gbcm,^gbm_ $^ >gb_prot.h.tmp
	../SOURCE_TOOLS/mv_if_diff gb_prot.h.tmp gb_prot.h

tlpro: $(GB_T:.o=.cxx)
	../AISC_MKPTPS/aisc_mkpt -c "Internal toolkit" -G -w gb_t_prot.h -F ^gb_,^gbt_,^gbs_ $^ >gb_t_prot.h.tmp
	../SOURCE_TOOLS/mv_if_diff gb_t_prot.h.tmp gb_t_prot.h

global_proto: pro ppro tpro cbpro

pro: $(GB_O:.o=.cxx)
	../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
	../SOURCE_TOOLS/mv_if_diff ad_prot.h.tmp ad_prot.h

cbpro: $(GB_O:.o=.cxx)
	../AISC_MKPTPS/aisc_mkpt -c "ARB database callback interface" -G -w ad_cb_prot.h -F '^GB_+callback' $^ >ad_cb_prot.h.tmp
	../SOURCE_TOOLS/mv_if_diff ad_cb_prot.h.tmp ad_cb_prot.h

ppro: $(GB_O:.o=.cxx)
	../AISC_MKPTPS/aisc_mkpt -c "ARB perl interface" -G -w ad_p_prot.h -F ^GBP_ $^ >ad_p_prot.h.tmp
	../SOURCE_TOOLS/mv_if_diff ad_p_prot.h.tmp ad_p_prot.h

tpro: $(GB_T:.o=.cxx)
	../AISC_MKPTPS/aisc_mkpt -c "ARB toolkit" -G -w ad_t_prot.h -F ^GB_,^GEN_,^EXP_,^GBT_ $^ >ad_t_prot.h.tmp
	../SOURCE_TOOLS/mv_if_diff ad_t_prot.h.tmp ad_t_prot.h

wc:
	wc *.[ch]

clean:
	rm -f $(OBJECTS) *.a *.so

DEPENDS = $(OBJECTS:.o=.depend)
depends: $(DEPENDS)
	@cat $(DEPENDS) | grep -v '^#' >>Makefile
	@rm $(DEPENDS)
$(DEPENDS): depend.init
depend.init:
	$(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
.c.depend:
	$(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
.cxx.depend:
	$(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@

# DO NOT DELETE THIS LINE -- make depend depends on it.

# Do not add dependencies manually - use 'make depend' in $ARBHOME
# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)

ad_cb.o: ad_cb.h
ad_cb.o: ad_cb_prot.h
ad_cb.o: ad_hcb.h
ad_cb.o: ad_prot.h
ad_cb.o: arbdb.h
ad_cb.o: arbdb_base.h
ad_cb.o: gb_cb.h
ad_cb.o: gb_compress.h
ad_cb.o: gb_data.h
ad_cb.o: gb_header.h
ad_cb.o: gb_key.h
ad_cb.o: gb_local.h
ad_cb.o: gb_main.h
ad_cb.o: gb_memory.h
ad_cb.o: gb_prot.h
ad_cb.o: gb_storage.h
ad_cb.o: gb_ta.h
ad_cb.o: gb_ts.h
ad_cb.o: gb_tune.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_assert.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_core.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_error.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_file.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_mem.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_msg.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_strarray.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
ad_cb.o: $(ARBHOME)/INCLUDE/arb_string.h
ad_cb.o: $(ARBHOME)/INCLUDE/arbtools.h
ad_cb.o: $(ARBHOME)/INCLUDE/attributes.h
ad_cb.o: $(ARBHOME)/INCLUDE/cb.h
ad_cb.o: $(ARBHOME)/INCLUDE/cb_base.h
ad_cb.o: $(ARBHOME)/INCLUDE/cbtypes.h
ad_cb.o: $(ARBHOME)/INCLUDE/cxxforward.h
ad_cb.o: $(ARBHOME)/INCLUDE/dupstr.h
ad_cb.o: $(ARBHOME)/INCLUDE/gccver.h
ad_cb.o: $(ARBHOME)/INCLUDE/smartptr.h
ad_cb.o: $(ARBHOME)/INCLUDE/static_assert.h
ad_cb.o: $(ARBHOME)/INCLUDE/stringize.h
ad_cb.o: $(ARBHOME)/INCLUDE/test_global.h
ad_cb.o: $(ARBHOME)/INCLUDE/test_unit.h
ad_cb.o: $(ARBHOME)/INCLUDE/ttypes.h

ad_colorset.o: ad_colorset.h
ad_colorset.o: ad_prot.h
ad_colorset.o: ad_t_prot.h
ad_colorset.o: arbdb.h
ad_colorset.o: arbdb_base.h
ad_colorset.o: arbdbt.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_assert.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_core.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_error.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_mem.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_msg.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_strarray.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arb_string.h
ad_colorset.o: $(ARBHOME)/INCLUDE/arbtools.h
ad_colorset.o: $(ARBHOME)/INCLUDE/attributes.h
ad_colorset.o: $(ARBHOME)/INCLUDE/cxxforward.h
ad_colorset.o: $(ARBHOME)/INCLUDE/downcast.h
ad_colorset.o: $(ARBHOME)/INCLUDE/dupstr.h
ad_colorset.o: $(ARBHOME)/INCLUDE/gccver.h
ad_colorset.o: $(ARBHOME)/INCLUDE/smartptr.h
ad_colorset.o: $(ARBHOME)/INCLUDE/static_assert.h
ad_colorset.o: $(ARBHOME)/INCLUDE/stringize.h
ad_colorset.o: $(ARBHOME)/INCLUDE/test_global.h

ad_config.o: ad_config.h
ad_config.o: ad_prot.h
ad_config.o: ad_t_prot.h
ad_config.o: arbdb.h
ad_config.o: arbdb_base.h
ad_config.o: arbdbt.h
ad_config.o: gb_local.h
ad_config.o: gb_prot.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_assert.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_core.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_defs.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_error.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_mem.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_msg.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_strarray.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
ad_config.o: $(ARBHOME)/INCLUDE/arb_string.h
ad_config.o: $(ARBHOME)/INCLUDE/arbtools.h
ad_config.o: $(ARBHOME)/INCLUDE/attributes.h
ad_config.o: $(ARBHOME)/INCLUDE/cxxforward.h
ad_config.o: $(ARBHOME)/INCLUDE/downcast.h
ad_config.o: $(ARBHOME)/INCLUDE/dupstr.h
ad_config.o: $(ARBHOME)/INCLUDE/gccver.h
ad_config.o: $(ARBHOME)/INCLUDE/smartptr.h
ad_config.o: $(ARBHOME)/INCLUDE/static_assert.h
ad_config.o: $(ARBHOME)/INCLUDE/stringize.h
ad_config.o: $(ARBHOME)/INCLUDE/test_global.h
ad_config.o: $(ARBHOME)/INCLUDE/test_unit.h

ad_core.o: ad_hcb.h
ad_core.o: ad_prot.h
ad_core.o: arbdb.h
ad_core.o: arbdb_base.h
ad_core.o: gb_cb.h
ad_core.o: gb_data.h
ad_core.o: gb_header.h
ad_core.o: gb_index.h
ad_core.o: gb_key.h
ad_core.o: gb_local.h
ad_core.o: gb_localdata.h
ad_core.o: gb_main.h
ad_core.o: gb_memory.h
ad_core.o: gb_prot.h
ad_core.o: gb_storage.h
ad_core.o: gb_ts.h
ad_core.o: gb_tune.h
ad_core.o: $(ARBHOME)/INCLUDE/arb_assert.h
ad_core.o: $(ARBHOME)/INCLUDE/arb_core.h
ad_core.o: $(ARBHOME)/INCLUDE/arb_error.h
ad_core.o: $(ARBHOME)/INCLUDE/arb_mem.h
ad_core.o: $(ARBHOME)/INCLUDE/arb_msg.h
ad_core.o: $(ARBHOME)/INCLUDE/arb_string.h
ad_core.o: $(ARBHOME)/INCLUDE/arbtools.h
ad_core.o: $(ARBHOME)/INCLUDE/attributes.h
ad_core.o: $(ARBHOME)/INCLUDE/cb.h
ad_core.o: $(ARBHOME)/INCLUDE/cb_base.h
ad_core.o: $(ARBHOME)/INCLUDE/cbtypes.h
ad_core.o: $(ARBHOME)/INCLUDE/cxxforward.h
ad_core.o: $(ARBHOME)/INCLUDE/dupstr.h
ad_core.o: $(ARBHOME)/INCLUDE/gccver.h
ad_core.o: $(ARBHOME)/INCLUDE/smartptr.h
ad_core.o: $(ARBHOME)/INCLUDE/static_assert.h
ad_core.o: $(ARBHOME)/INCLUDE/stringize.h
ad_core.o: $(ARBHOME)/INCLUDE/test_global.h
ad_core.o: $(ARBHOME)/INCLUDE/ttypes.h

ad_load.o: ad_io_inline.h
ad_load.o: ad_prot.h
ad_load.o: ad_t_prot.h
ad_load.o: arbdb.h
ad_load.o: arbdb_base.h
ad_load.o: arbdbt.h
ad_load.o: gb_cb.h
ad_load.o: gb_data.h
ad_load.o: gb_header.h
ad_load.o: gb_key.h
ad_load.o: gb_load.h
ad_load.o: gb_local.h
ad_load.o: gb_localdata.h
ad_load.o: gb_main.h
ad_load.o: gb_map.h
ad_load.o: gb_memory.h
ad_load.o: gb_prot.h
ad_load.o: gb_storage.h
ad_load.o: gb_tune.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_assert.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_core.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_defs.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_error.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_file.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_mem.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_msg.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_progress.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_str.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_string.h
ad_load.o: $(ARBHOME)/INCLUDE/arb_zfile.h
ad_load.o: $(ARBHOME)/INCLUDE/arbtools.h
ad_load.o: $(ARBHOME)/INCLUDE/attributes.h
ad_load.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h
ad_load.o: $(ARBHOME)/INCLUDE/cb.h
ad_load.o: $(ARBHOME)/INCLUDE/cb_base.h
ad_load.o: $(ARBHOME)/INCLUDE/cbtypes.h
ad_load.o: $(ARBHOME)/INCLUDE/cxxforward.h
ad_load.o: $(ARBHOME)/INCLUDE/downcast.h
ad_load.o: $(ARBHOME)/INCLUDE/dupstr.h
ad_load.o: $(ARBHOME)/INCLUDE/gccver.h
ad_load.o: $(ARBHOME)/INCLUDE/smartptr.h
ad_load.o: $(ARBHOME)/INCLUDE/static_assert.h
ad_load.o: $(ARBHOME)/INCLUDE/stringize.h
ad_load.o: $(ARBHOME)/INCLUDE/test_global.h
ad_load.o: $(ARBHOME)/INCLUDE/test_unit.h
ad_load.o: $(ARBHOME)/INCLUDE/ttypes.h

ad_save_load.o: ad_io_inline.h
ad_save_load.o: ad_prot.h
ad_save_load.o: arbdb.h
ad_save_load.o: arbdb_base.h
ad_save_load.o: gb_cb.h
ad_save_load.o: gb_data.h
ad_save_load.o: gb_header.h
ad_save_load.o: gb_key.h
ad_save_load.o: gb_load.h
ad_save_load.o: gb_local.h
ad_save_load.o: gb_main.h
ad_save_load.o: gb_map.h
ad_save_load.o: gb_memory.h
ad_save_load.o: gb_prot.h
ad_save_load.o: gb_storage.h
ad_save_load.o: gb_tune.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_assert.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_core.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_defs.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_diff.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_error.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_file.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_mem.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_misc.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_msg.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_string.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arb_zfile.h
ad_save_load.o: $(ARBHOME)/INCLUDE/arbtools.h
ad_save_load.o: $(ARBHOME)/INCLUDE/attributes.h
ad_save_load.o: $(ARBHOME)/INCLUDE/cb.h
ad_save_load.o: $(ARBHOME)/INCLUDE/cb_base.h
ad_save_load.o: $(ARBHOME)/INCLUDE/cbtypes.h
ad_save_load.o: $(ARBHOME)/INCLUDE/cxxforward.h
ad_save_load.o: $(ARBHOME)/INCLUDE/dupstr.h
ad_save_load.o: $(ARBHOME)/INCLUDE/gccver.h
ad_save_load.o: $(ARBHOME)/INCLUDE/SigHandler.h
ad_save_load.o: $(ARBHOME)/INCLUDE/smartptr.h
ad_save_load.o: $(ARBHOME)/INCLUDE/static_assert.h
ad_save_load.o: $(ARBHOME)/INCLUDE/stringize.h
ad_save_load.o: $(ARBHOME)/INCLUDE/test_global.h
ad_save_load.o: $(ARBHOME)/INCLUDE/test_unit.h
ad_save_load.o: $(ARBHOME)/INCLUDE/ttypes.h

adali.o: ad_prot.h
adali.o: ad_t_prot.h
adali.o: adGene.h
adali.o: arbdb.h
adali.o: arbdb_base.h
adali.o: arbdbt.h
adali.o: gb_local.h
adali.o: gb_prot.h
adali.o: $(ARBHOME)/INCLUDE/arb_assert.h
adali.o: $(ARBHOME)/INCLUDE/arb_core.h
adali.o: $(ARBHOME)/INCLUDE/arb_error.h
adali.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
adali.o: $(ARBHOME)/INCLUDE/arb_mem.h
adali.o: $(ARBHOME)/INCLUDE/arb_msg.h
adali.o: $(ARBHOME)/INCLUDE/arb_str.h
adali.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adali.o: $(ARBHOME)/INCLUDE/arb_string.h
adali.o: $(ARBHOME)/INCLUDE/arbtools.h
adali.o: $(ARBHOME)/INCLUDE/attributes.h
adali.o: $(ARBHOME)/INCLUDE/cxxforward.h
adali.o: $(ARBHOME)/INCLUDE/downcast.h
adali.o: $(ARBHOME)/INCLUDE/dupstr.h
adali.o: $(ARBHOME)/INCLUDE/gccver.h
adali.o: $(ARBHOME)/INCLUDE/smartptr.h
adali.o: $(ARBHOME)/INCLUDE/static_assert.h
adali.o: $(ARBHOME)/INCLUDE/stringize.h
adali.o: $(ARBHOME)/INCLUDE/test_global.h
adali.o: $(ARBHOME)/INCLUDE/test_unit.h

adcache.o: ad_prot.h
adcache.o: arbdb.h
adcache.o: arbdb_base.h
adcache.o: gb_cb.h
adcache.o: gb_data.h
adcache.o: gb_local.h
adcache.o: gb_main.h
adcache.o: gb_memory.h
adcache.o: gb_prot.h
adcache.o: gb_storage.h
adcache.o: gb_tune.h
adcache.o: $(ARBHOME)/INCLUDE/arb_assert.h
adcache.o: $(ARBHOME)/INCLUDE/arb_core.h
adcache.o: $(ARBHOME)/INCLUDE/arb_error.h
adcache.o: $(ARBHOME)/INCLUDE/arb_mem.h
adcache.o: $(ARBHOME)/INCLUDE/arb_msg.h
adcache.o: $(ARBHOME)/INCLUDE/arb_string.h
adcache.o: $(ARBHOME)/INCLUDE/arbtools.h
adcache.o: $(ARBHOME)/INCLUDE/attributes.h
adcache.o: $(ARBHOME)/INCLUDE/cb.h
adcache.o: $(ARBHOME)/INCLUDE/cb_base.h
adcache.o: $(ARBHOME)/INCLUDE/cbtypes.h
adcache.o: $(ARBHOME)/INCLUDE/cxxforward.h
adcache.o: $(ARBHOME)/INCLUDE/dupstr.h
adcache.o: $(ARBHOME)/INCLUDE/gccver.h
adcache.o: $(ARBHOME)/INCLUDE/smartptr.h
adcache.o: $(ARBHOME)/INCLUDE/static_assert.h
adcache.o: $(ARBHOME)/INCLUDE/stringize.h
adcache.o: $(ARBHOME)/INCLUDE/test_global.h
adcache.o: $(ARBHOME)/INCLUDE/ttypes.h

adChangeKey.o: ad_prot.h
adChangeKey.o: ad_t_prot.h
adChangeKey.o: arbdb.h
adChangeKey.o: arbdb_base.h
adChangeKey.o: arbdbt.h
adChangeKey.o: gb_local.h
adChangeKey.o: gb_prot.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_assert.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_core.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_error.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_mem.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_msg.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arb_string.h
adChangeKey.o: $(ARBHOME)/INCLUDE/arbtools.h
adChangeKey.o: $(ARBHOME)/INCLUDE/attributes.h
adChangeKey.o: $(ARBHOME)/INCLUDE/cxxforward.h
adChangeKey.o: $(ARBHOME)/INCLUDE/downcast.h
adChangeKey.o: $(ARBHOME)/INCLUDE/dupstr.h
adChangeKey.o: $(ARBHOME)/INCLUDE/gccver.h
adChangeKey.o: $(ARBHOME)/INCLUDE/smartptr.h
adChangeKey.o: $(ARBHOME)/INCLUDE/static_assert.h
adChangeKey.o: $(ARBHOME)/INCLUDE/stringize.h
adChangeKey.o: $(ARBHOME)/INCLUDE/test_global.h

adcomm.o: ad_prot.h
adcomm.o: arbdb.h
adcomm.o: arbdb_base.h
adcomm.o: gb_cb.h
adcomm.o: gb_comm.h
adcomm.o: gb_data.h
adcomm.o: gb_header.h
adcomm.o: gb_key.h
adcomm.o: gb_local.h
adcomm.o: gb_localdata.h
adcomm.o: gb_main.h
adcomm.o: gb_memory.h
adcomm.o: gb_prot.h
adcomm.o: gb_storage.h
adcomm.o: gb_tune.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_assert.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_core.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_error.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_file.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_mem.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_msg.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_signal.h
adcomm.o: $(ARBHOME)/INCLUDE/arb_string.h
adcomm.o: $(ARBHOME)/INCLUDE/arbtools.h
adcomm.o: $(ARBHOME)/INCLUDE/attributes.h
adcomm.o: $(ARBHOME)/INCLUDE/cb.h
adcomm.o: $(ARBHOME)/INCLUDE/cb_base.h
adcomm.o: $(ARBHOME)/INCLUDE/cbtypes.h
adcomm.o: $(ARBHOME)/INCLUDE/cxxforward.h
adcomm.o: $(ARBHOME)/INCLUDE/dupstr.h
adcomm.o: $(ARBHOME)/INCLUDE/gccver.h
adcomm.o: $(ARBHOME)/INCLUDE/SigHandler.h
adcomm.o: $(ARBHOME)/INCLUDE/smartptr.h
adcomm.o: $(ARBHOME)/INCLUDE/static_assert.h
adcomm.o: $(ARBHOME)/INCLUDE/stringize.h
adcomm.o: $(ARBHOME)/INCLUDE/test_global.h
adcomm.o: $(ARBHOME)/INCLUDE/ttypes.h

adcompr.o: ad_prot.h
adcompr.o: ad_t_prot.h
adcompr.o: arbdb.h
adcompr.o: arbdb_base.h
adcompr.o: arbdbt.h
adcompr.o: gb_cb.h
adcompr.o: gb_compress.h
adcompr.o: gb_data.h
adcompr.o: gb_header.h
adcompr.o: gb_key.h
adcompr.o: gb_local.h
adcompr.o: gb_localdata.h
adcompr.o: gb_main.h
adcompr.o: gb_memory.h
adcompr.o: gb_prot.h
adcompr.o: gb_storage.h
adcompr.o: gb_t_prot.h
adcompr.o: gb_tune.h
adcompr.o: $(ARBHOME)/INCLUDE/arb_assert.h
adcompr.o: $(ARBHOME)/INCLUDE/arb_core.h
adcompr.o: $(ARBHOME)/INCLUDE/arb_error.h
adcompr.o: $(ARBHOME)/INCLUDE/arb_mem.h
adcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h
adcompr.o: $(ARBHOME)/INCLUDE/arb_string.h
adcompr.o: $(ARBHOME)/INCLUDE/arbtools.h
adcompr.o: $(ARBHOME)/INCLUDE/attributes.h
adcompr.o: $(ARBHOME)/INCLUDE/cb.h
adcompr.o: $(ARBHOME)/INCLUDE/cb_base.h
adcompr.o: $(ARBHOME)/INCLUDE/cbtypes.h
adcompr.o: $(ARBHOME)/INCLUDE/cxxforward.h
adcompr.o: $(ARBHOME)/INCLUDE/downcast.h
adcompr.o: $(ARBHOME)/INCLUDE/dupstr.h
adcompr.o: $(ARBHOME)/INCLUDE/gccver.h
adcompr.o: $(ARBHOME)/INCLUDE/smartptr.h
adcompr.o: $(ARBHOME)/INCLUDE/static_assert.h
adcompr.o: $(ARBHOME)/INCLUDE/stringize.h
adcompr.o: $(ARBHOME)/INCLUDE/test_global.h
adcompr.o: $(ARBHOME)/INCLUDE/ttypes.h

adExperiment.o: ad_prot.h
adExperiment.o: ad_t_prot.h
adExperiment.o: arbdb.h
adExperiment.o: arbdb_base.h
adExperiment.o: arbdbt.h
adExperiment.o: gb_local.h
adExperiment.o: gb_prot.h
adExperiment.o: $(ARBHOME)/INCLUDE/arb_assert.h
adExperiment.o: $(ARBHOME)/INCLUDE/arb_core.h
adExperiment.o: $(ARBHOME)/INCLUDE/arb_error.h
adExperiment.o: $(ARBHOME)/INCLUDE/arb_mem.h
adExperiment.o: $(ARBHOME)/INCLUDE/arb_msg.h
adExperiment.o: $(ARBHOME)/INCLUDE/arb_string.h
adExperiment.o: $(ARBHOME)/INCLUDE/arbtools.h
adExperiment.o: $(ARBHOME)/INCLUDE/attributes.h
adExperiment.o: $(ARBHOME)/INCLUDE/cxxforward.h
adExperiment.o: $(ARBHOME)/INCLUDE/downcast.h
adExperiment.o: $(ARBHOME)/INCLUDE/dupstr.h
adExperiment.o: $(ARBHOME)/INCLUDE/gccver.h
adExperiment.o: $(ARBHOME)/INCLUDE/smartptr.h
adExperiment.o: $(ARBHOME)/INCLUDE/static_assert.h
adExperiment.o: $(ARBHOME)/INCLUDE/stringize.h
adExperiment.o: $(ARBHOME)/INCLUDE/test_global.h

adfile.o: ad_prot.h
adfile.o: arbdb.h
adfile.o: arbdb_base.h
adfile.o: gb_load.h
adfile.o: gb_local.h
adfile.o: gb_prot.h
adfile.o: $(ARBHOME)/INCLUDE/arb_assert.h
adfile.o: $(ARBHOME)/INCLUDE/arb_core.h
adfile.o: $(ARBHOME)/INCLUDE/arb_error.h
adfile.o: $(ARBHOME)/INCLUDE/arb_file.h
adfile.o: $(ARBHOME)/INCLUDE/arb_mem.h
adfile.o: $(ARBHOME)/INCLUDE/arb_msg.h
adfile.o: $(ARBHOME)/INCLUDE/arb_pathlen.h
adfile.o: $(ARBHOME)/INCLUDE/arb_sort.h
adfile.o: $(ARBHOME)/INCLUDE/arb_str.h
adfile.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adfile.o: $(ARBHOME)/INCLUDE/arb_string.h
adfile.o: $(ARBHOME)/INCLUDE/arbtools.h
adfile.o: $(ARBHOME)/INCLUDE/attributes.h
adfile.o: $(ARBHOME)/INCLUDE/cxxforward.h
adfile.o: $(ARBHOME)/INCLUDE/dupstr.h
adfile.o: $(ARBHOME)/INCLUDE/gccver.h
adfile.o: $(ARBHOME)/INCLUDE/smartptr.h
adfile.o: $(ARBHOME)/INCLUDE/static_assert.h
adfile.o: $(ARBHOME)/INCLUDE/stringize.h
adfile.o: $(ARBHOME)/INCLUDE/test_global.h
adfile.o: $(ARBHOME)/INCLUDE/test_unit.h

adGene.o: ad_prot.h
adGene.o: ad_t_prot.h
adGene.o: adGene.h
adGene.o: arbdb.h
adGene.o: arbdb_base.h
adGene.o: arbdbt.h
adGene.o: gb_local.h
adGene.o: gb_prot.h
adGene.o: $(ARBHOME)/INCLUDE/arb_assert.h
adGene.o: $(ARBHOME)/INCLUDE/arb_core.h
adGene.o: $(ARBHOME)/INCLUDE/arb_defs.h
adGene.o: $(ARBHOME)/INCLUDE/arb_error.h
adGene.o: $(ARBHOME)/INCLUDE/arb_mem.h
adGene.o: $(ARBHOME)/INCLUDE/arb_msg.h
adGene.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adGene.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adGene.o: $(ARBHOME)/INCLUDE/arb_string.h
adGene.o: $(ARBHOME)/INCLUDE/arb_unit_test.h
adGene.o: $(ARBHOME)/INCLUDE/arbtools.h
adGene.o: $(ARBHOME)/INCLUDE/attributes.h
adGene.o: $(ARBHOME)/INCLUDE/cxxforward.h
adGene.o: $(ARBHOME)/INCLUDE/downcast.h
adGene.o: $(ARBHOME)/INCLUDE/dupstr.h
adGene.o: $(ARBHOME)/INCLUDE/gccver.h
adGene.o: $(ARBHOME)/INCLUDE/smartptr.h
adGene.o: $(ARBHOME)/INCLUDE/static_assert.h
adGene.o: $(ARBHOME)/INCLUDE/stringize.h
adGene.o: $(ARBHOME)/INCLUDE/test_global.h
adGene.o: $(ARBHOME)/INCLUDE/test_unit.h

adhash.o: ad_prot.h
adhash.o: arbdb.h
adhash.o: arbdb_base.h
adhash.o: gb_data.h
adhash.o: gb_hashindex.h
adhash.o: gb_local.h
adhash.o: gb_memory.h
adhash.o: gb_prot.h
adhash.o: gb_storage.h
adhash.o: gb_tune.h
adhash.o: $(ARBHOME)/INCLUDE/arb_assert.h
adhash.o: $(ARBHOME)/INCLUDE/arb_core.h
adhash.o: $(ARBHOME)/INCLUDE/arb_error.h
adhash.o: $(ARBHOME)/INCLUDE/arb_mem.h
adhash.o: $(ARBHOME)/INCLUDE/arb_msg.h
adhash.o: $(ARBHOME)/INCLUDE/arb_sort.h
adhash.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adhash.o: $(ARBHOME)/INCLUDE/arb_string.h
adhash.o: $(ARBHOME)/INCLUDE/arbtools.h
adhash.o: $(ARBHOME)/INCLUDE/attributes.h
adhash.o: $(ARBHOME)/INCLUDE/cxxforward.h
adhash.o: $(ARBHOME)/INCLUDE/dupstr.h
adhash.o: $(ARBHOME)/INCLUDE/gccver.h
adhash.o: $(ARBHOME)/INCLUDE/smartptr.h
adhash.o: $(ARBHOME)/INCLUDE/test_global.h
adhash.o: $(ARBHOME)/INCLUDE/test_unit.h

adhashtools.o: ad_prot.h
adhashtools.o: ad_t_prot.h
adhashtools.o: arbdb.h
adhashtools.o: arbdb_base.h
adhashtools.o: arbdbt.h
adhashtools.o: gb_local.h
adhashtools.o: gb_prot.h
adhashtools.o: $(ARBHOME)/INCLUDE/arb_assert.h
adhashtools.o: $(ARBHOME)/INCLUDE/arb_core.h
adhashtools.o: $(ARBHOME)/INCLUDE/arb_error.h
adhashtools.o: $(ARBHOME)/INCLUDE/arb_mem.h
adhashtools.o: $(ARBHOME)/INCLUDE/arb_msg.h
adhashtools.o: $(ARBHOME)/INCLUDE/arb_string.h
adhashtools.o: $(ARBHOME)/INCLUDE/arbtools.h
adhashtools.o: $(ARBHOME)/INCLUDE/attributes.h
adhashtools.o: $(ARBHOME)/INCLUDE/cxxforward.h
adhashtools.o: $(ARBHOME)/INCLUDE/downcast.h
adhashtools.o: $(ARBHOME)/INCLUDE/dupstr.h
adhashtools.o: $(ARBHOME)/INCLUDE/gccver.h
adhashtools.o: $(ARBHOME)/INCLUDE/smartptr.h
adhashtools.o: $(ARBHOME)/INCLUDE/static_assert.h
adhashtools.o: $(ARBHOME)/INCLUDE/stringize.h
adhashtools.o: $(ARBHOME)/INCLUDE/test_global.h

adindex.o: ad_cb_prot.h
adindex.o: ad_prot.h
adindex.o: arbdb.h
adindex.o: arbdb_base.h
adindex.o: gb_cb.h
adindex.o: gb_data.h
adindex.o: gb_hashindex.h
adindex.o: gb_header.h
adindex.o: gb_index.h
adindex.o: gb_key.h
adindex.o: gb_local.h
adindex.o: gb_main.h
adindex.o: gb_memory.h
adindex.o: gb_prot.h
adindex.o: gb_storage.h
adindex.o: gb_ts.h
adindex.o: gb_tune.h
adindex.o: gb_undo.h
adindex.o: $(ARBHOME)/INCLUDE/arb_assert.h
adindex.o: $(ARBHOME)/INCLUDE/arb_core.h
adindex.o: $(ARBHOME)/INCLUDE/arb_error.h
adindex.o: $(ARBHOME)/INCLUDE/arb_mem.h
adindex.o: $(ARBHOME)/INCLUDE/arb_msg.h
adindex.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adindex.o: $(ARBHOME)/INCLUDE/arb_string.h
adindex.o: $(ARBHOME)/INCLUDE/arbtools.h
adindex.o: $(ARBHOME)/INCLUDE/attributes.h
adindex.o: $(ARBHOME)/INCLUDE/cb.h
adindex.o: $(ARBHOME)/INCLUDE/cb_base.h
adindex.o: $(ARBHOME)/INCLUDE/cbtypes.h
adindex.o: $(ARBHOME)/INCLUDE/cxxforward.h
adindex.o: $(ARBHOME)/INCLUDE/dupstr.h
adindex.o: $(ARBHOME)/INCLUDE/gccver.h
adindex.o: $(ARBHOME)/INCLUDE/smartptr.h
adindex.o: $(ARBHOME)/INCLUDE/static_assert.h
adindex.o: $(ARBHOME)/INCLUDE/stringize.h
adindex.o: $(ARBHOME)/INCLUDE/test_global.h
adindex.o: $(ARBHOME)/INCLUDE/test_unit.h
adindex.o: $(ARBHOME)/INCLUDE/ttypes.h

aditem.o: ad_prot.h
aditem.o: ad_t_prot.h
aditem.o: arbdb.h
aditem.o: arbdb_base.h
aditem.o: arbdbt.h
aditem.o: gb_local.h
aditem.o: gb_prot.h
aditem.o: $(ARBHOME)/INCLUDE/arb_assert.h
aditem.o: $(ARBHOME)/INCLUDE/arb_core.h
aditem.o: $(ARBHOME)/INCLUDE/arb_error.h
aditem.o: $(ARBHOME)/INCLUDE/arb_mem.h
aditem.o: $(ARBHOME)/INCLUDE/arb_msg.h
aditem.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
aditem.o: $(ARBHOME)/INCLUDE/arb_string.h
aditem.o: $(ARBHOME)/INCLUDE/arbtools.h
aditem.o: $(ARBHOME)/INCLUDE/attributes.h
aditem.o: $(ARBHOME)/INCLUDE/cxxforward.h
aditem.o: $(ARBHOME)/INCLUDE/downcast.h
aditem.o: $(ARBHOME)/INCLUDE/dupstr.h
aditem.o: $(ARBHOME)/INCLUDE/gccver.h
aditem.o: $(ARBHOME)/INCLUDE/smartptr.h
aditem.o: $(ARBHOME)/INCLUDE/static_assert.h
aditem.o: $(ARBHOME)/INCLUDE/stringize.h
aditem.o: $(ARBHOME)/INCLUDE/test_global.h

adlang1.o: ad_cb.h
adlang1.o: ad_cb_prot.h
adlang1.o: ad_prot.h
adlang1.o: ad_t_prot.h
adlang1.o: adGene.h
adlang1.o: arbdb.h
adlang1.o: arbdb_base.h
adlang1.o: arbdbt.h
adlang1.o: gb_aci.h
adlang1.o: gb_aci_impl.h
adlang1.o: gb_cb.h
adlang1.o: gb_data.h
adlang1.o: gb_header.h
adlang1.o: gb_key.h
adlang1.o: gb_local.h
adlang1.o: gb_main.h
adlang1.o: gb_memory.h
adlang1.o: gb_prot.h
adlang1.o: gb_storage.h
adlang1.o: gb_tune.h
adlang1.o: TreeNode.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_assert.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_core.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_defs.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_error.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_file.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_mem.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_msg.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_sort.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_str.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adlang1.o: $(ARBHOME)/INCLUDE/arb_string.h
adlang1.o: $(ARBHOME)/INCLUDE/arbtools.h
adlang1.o: $(ARBHOME)/INCLUDE/attributes.h
adlang1.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
adlang1.o: $(ARBHOME)/INCLUDE/cb.h
adlang1.o: $(ARBHOME)/INCLUDE/cb_base.h
adlang1.o: $(ARBHOME)/INCLUDE/cbtypes.h
adlang1.o: $(ARBHOME)/INCLUDE/cxxforward.h
adlang1.o: $(ARBHOME)/INCLUDE/downcast.h
adlang1.o: $(ARBHOME)/INCLUDE/dupstr.h
adlang1.o: $(ARBHOME)/INCLUDE/gccver.h
adlang1.o: $(ARBHOME)/INCLUDE/smartptr.h
adlang1.o: $(ARBHOME)/INCLUDE/static_assert.h
adlang1.o: $(ARBHOME)/INCLUDE/stringize.h
adlang1.o: $(ARBHOME)/INCLUDE/test_global.h
adlang1.o: $(ARBHOME)/INCLUDE/ttypes.h

admalloc.o: ad_prot.h
admalloc.o: arbdb.h
admalloc.o: arbdb_base.h
admalloc.o: gb_data.h
admalloc.o: gb_local.h
admalloc.o: gb_memory.h
admalloc.o: gb_prot.h
admalloc.o: gb_storage.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_assert.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_backtrace.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_core.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_error.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_mem.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_msg.h
admalloc.o: $(ARBHOME)/INCLUDE/arb_string.h
admalloc.o: $(ARBHOME)/INCLUDE/arbtools.h
admalloc.o: $(ARBHOME)/INCLUDE/attributes.h
admalloc.o: $(ARBHOME)/INCLUDE/cxxforward.h
admalloc.o: $(ARBHOME)/INCLUDE/dupstr.h
admalloc.o: $(ARBHOME)/INCLUDE/gccver.h
admalloc.o: $(ARBHOME)/INCLUDE/smartptr.h
admalloc.o: $(ARBHOME)/INCLUDE/test_global.h

admap.o: ad_prot.h
admap.o: arbdb.h
admap.o: arbdb_base.h
admap.o: gb_cb.h
admap.o: gb_data.h
admap.o: gb_header.h
admap.o: gb_index.h
admap.o: gb_key.h
admap.o: gb_local.h
admap.o: gb_main.h
admap.o: gb_map.h
admap.o: gb_memory.h
admap.o: gb_prot.h
admap.o: gb_storage.h
admap.o: gb_tune.h
admap.o: $(ARBHOME)/INCLUDE/arb_assert.h
admap.o: $(ARBHOME)/INCLUDE/arb_core.h
admap.o: $(ARBHOME)/INCLUDE/arb_error.h
admap.o: $(ARBHOME)/INCLUDE/arb_file.h
admap.o: $(ARBHOME)/INCLUDE/arb_mem.h
admap.o: $(ARBHOME)/INCLUDE/arb_msg.h
admap.o: $(ARBHOME)/INCLUDE/arb_string.h
admap.o: $(ARBHOME)/INCLUDE/arbtools.h
admap.o: $(ARBHOME)/INCLUDE/attributes.h
admap.o: $(ARBHOME)/INCLUDE/cb.h
admap.o: $(ARBHOME)/INCLUDE/cb_base.h
admap.o: $(ARBHOME)/INCLUDE/cbtypes.h
admap.o: $(ARBHOME)/INCLUDE/cxxforward.h
admap.o: $(ARBHOME)/INCLUDE/dupstr.h
admap.o: $(ARBHOME)/INCLUDE/gccver.h
admap.o: $(ARBHOME)/INCLUDE/smartptr.h
admap.o: $(ARBHOME)/INCLUDE/static_assert.h
admap.o: $(ARBHOME)/INCLUDE/stringize.h
admap.o: $(ARBHOME)/INCLUDE/test_global.h
admap.o: $(ARBHOME)/INCLUDE/ttypes.h

admatch.o: ad_prot.h
admatch.o: ad_t_prot.h
admatch.o: arbdb.h
admatch.o: arbdb_base.h
admatch.o: arbdbt.h
admatch.o: gb_aci.h
admatch.o: gb_aci_impl.h
admatch.o: gb_local.h
admatch.o: gb_prot.h
admatch.o: $(ARBHOME)/INCLUDE/arb_assert.h
admatch.o: $(ARBHOME)/INCLUDE/arb_core.h
admatch.o: $(ARBHOME)/INCLUDE/arb_error.h
admatch.o: $(ARBHOME)/INCLUDE/arb_match.h
admatch.o: $(ARBHOME)/INCLUDE/arb_mem.h
admatch.o: $(ARBHOME)/INCLUDE/arb_msg.h
admatch.o: $(ARBHOME)/INCLUDE/arb_str.h
admatch.o: $(ARBHOME)/INCLUDE/arb_strarray.h
admatch.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
admatch.o: $(ARBHOME)/INCLUDE/arb_string.h
admatch.o: $(ARBHOME)/INCLUDE/arbtools.h
admatch.o: $(ARBHOME)/INCLUDE/attributes.h
admatch.o: $(ARBHOME)/INCLUDE/cxxforward.h
admatch.o: $(ARBHOME)/INCLUDE/downcast.h
admatch.o: $(ARBHOME)/INCLUDE/dupstr.h
admatch.o: $(ARBHOME)/INCLUDE/gccver.h
admatch.o: $(ARBHOME)/INCLUDE/smartptr.h
admatch.o: $(ARBHOME)/INCLUDE/static_assert.h
admatch.o: $(ARBHOME)/INCLUDE/stringize.h
admatch.o: $(ARBHOME)/INCLUDE/test_global.h
admatch.o: $(ARBHOME)/INCLUDE/test_unit.h

admath.o: ad_prot.h
admath.o: arbdb.h
admath.o: arbdb_base.h
admath.o: gb_local.h
admath.o: gb_prot.h
admath.o: $(ARBHOME)/INCLUDE/arb_assert.h
admath.o: $(ARBHOME)/INCLUDE/arb_core.h
admath.o: $(ARBHOME)/INCLUDE/arb_error.h
admath.o: $(ARBHOME)/INCLUDE/arb_mem.h
admath.o: $(ARBHOME)/INCLUDE/arb_msg.h
admath.o: $(ARBHOME)/INCLUDE/arb_string.h
admath.o: $(ARBHOME)/INCLUDE/arbtools.h
admath.o: $(ARBHOME)/INCLUDE/attributes.h
admath.o: $(ARBHOME)/INCLUDE/cxxforward.h
admath.o: $(ARBHOME)/INCLUDE/dupstr.h
admath.o: $(ARBHOME)/INCLUDE/gccver.h
admath.o: $(ARBHOME)/INCLUDE/smartptr.h
admath.o: $(ARBHOME)/INCLUDE/test_global.h
admath.o: $(ARBHOME)/INCLUDE/test_unit.h

adname.o: ad_colorset.h
adname.o: ad_config.h
adname.o: ad_prot.h
adname.o: ad_t_prot.h
adname.o: arbdb.h
adname.o: arbdb_base.h
adname.o: arbdbt.h
adname.o: gb_local.h
adname.o: gb_prot.h
adname.o: TreeNode.h
adname.o: $(ARBHOME)/INCLUDE/arb_assert.h
adname.o: $(ARBHOME)/INCLUDE/arb_core.h
adname.o: $(ARBHOME)/INCLUDE/arb_diff.h
adname.o: $(ARBHOME)/INCLUDE/arb_error.h
adname.o: $(ARBHOME)/INCLUDE/arb_file.h
adname.o: $(ARBHOME)/INCLUDE/arb_mem.h
adname.o: $(ARBHOME)/INCLUDE/arb_msg.h
adname.o: $(ARBHOME)/INCLUDE/arb_progress.h
adname.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adname.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adname.o: $(ARBHOME)/INCLUDE/arb_string.h
adname.o: $(ARBHOME)/INCLUDE/arbtools.h
adname.o: $(ARBHOME)/INCLUDE/attributes.h
adname.o: $(ARBHOME)/INCLUDE/cxxforward.h
adname.o: $(ARBHOME)/INCLUDE/downcast.h
adname.o: $(ARBHOME)/INCLUDE/dupstr.h
adname.o: $(ARBHOME)/INCLUDE/gccver.h
adname.o: $(ARBHOME)/INCLUDE/smartptr.h
adname.o: $(ARBHOME)/INCLUDE/static_assert.h
adname.o: $(ARBHOME)/INCLUDE/stringize.h
adname.o: $(ARBHOME)/INCLUDE/test_global.h
adname.o: $(ARBHOME)/INCLUDE/test_unit.h

adoptimize.o: ad_prot.h
adoptimize.o: ad_t_prot.h
adoptimize.o: arbdb.h
adoptimize.o: arbdb_base.h
adoptimize.o: arbdbt.h
adoptimize.o: gb_cb.h
adoptimize.o: gb_compress.h
adoptimize.o: gb_data.h
adoptimize.o: gb_dict.h
adoptimize.o: gb_header.h
adoptimize.o: gb_key.h
adoptimize.o: gb_local.h
adoptimize.o: gb_main.h
adoptimize.o: gb_memory.h
adoptimize.o: gb_prot.h
adoptimize.o: gb_storage.h
adoptimize.o: gb_tune.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_assert.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_core.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_diff.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_error.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_file.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_mem.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_msg.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_progress.h
adoptimize.o: $(ARBHOME)/INCLUDE/arb_string.h
adoptimize.o: $(ARBHOME)/INCLUDE/arbtools.h
adoptimize.o: $(ARBHOME)/INCLUDE/attributes.h
adoptimize.o: $(ARBHOME)/INCLUDE/cb.h
adoptimize.o: $(ARBHOME)/INCLUDE/cb_base.h
adoptimize.o: $(ARBHOME)/INCLUDE/cbtypes.h
adoptimize.o: $(ARBHOME)/INCLUDE/cxxforward.h
adoptimize.o: $(ARBHOME)/INCLUDE/downcast.h
adoptimize.o: $(ARBHOME)/INCLUDE/dupstr.h
adoptimize.o: $(ARBHOME)/INCLUDE/gccver.h
adoptimize.o: $(ARBHOME)/INCLUDE/smartptr.h
adoptimize.o: $(ARBHOME)/INCLUDE/static_assert.h
adoptimize.o: $(ARBHOME)/INCLUDE/stringize.h
adoptimize.o: $(ARBHOME)/INCLUDE/test_global.h
adoptimize.o: $(ARBHOME)/INCLUDE/test_unit.h
adoptimize.o: $(ARBHOME)/INCLUDE/ttypes.h

adperl.o: ad_prot.h
adperl.o: adperl.h
adperl.o: arbdb.h
adperl.o: arbdb_base.h
adperl.o: gb_local.h
adperl.o: gb_prot.h
adperl.o: $(ARBHOME)/INCLUDE/arb_assert.h
adperl.o: $(ARBHOME)/INCLUDE/arb_core.h
adperl.o: $(ARBHOME)/INCLUDE/arb_error.h
adperl.o: $(ARBHOME)/INCLUDE/arb_mem.h
adperl.o: $(ARBHOME)/INCLUDE/arb_msg.h
adperl.o: $(ARBHOME)/INCLUDE/arb_string.h
adperl.o: $(ARBHOME)/INCLUDE/arbtools.h
adperl.o: $(ARBHOME)/INCLUDE/attributes.h
adperl.o: $(ARBHOME)/INCLUDE/cxxforward.h
adperl.o: $(ARBHOME)/INCLUDE/dupstr.h
adperl.o: $(ARBHOME)/INCLUDE/gccver.h
adperl.o: $(ARBHOME)/INCLUDE/smartptr.h
adperl.o: $(ARBHOME)/INCLUDE/test_global.h

adquery.o: ad_prot.h
adquery.o: ad_t_prot.h
adquery.o: arbdb.h
adquery.o: arbdb_base.h
adquery.o: arbdbt.h
adquery.o: gb_aci.h
adquery.o: gb_cb.h
adquery.o: gb_comm.h
adquery.o: gb_data.h
adquery.o: gb_header.h
adquery.o: gb_index.h
adquery.o: gb_key.h
adquery.o: gb_local.h
adquery.o: gb_localdata.h
adquery.o: gb_main.h
adquery.o: gb_memory.h
adquery.o: gb_prot.h
adquery.o: gb_storage.h
adquery.o: gb_ta.h
adquery.o: gb_tune.h
adquery.o: $(ARBHOME)/INCLUDE/arb_assert.h
adquery.o: $(ARBHOME)/INCLUDE/arb_core.h
adquery.o: $(ARBHOME)/INCLUDE/arb_error.h
adquery.o: $(ARBHOME)/INCLUDE/arb_match.h
adquery.o: $(ARBHOME)/INCLUDE/arb_mem.h
adquery.o: $(ARBHOME)/INCLUDE/arb_msg.h
adquery.o: $(ARBHOME)/INCLUDE/arb_str.h
adquery.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adquery.o: $(ARBHOME)/INCLUDE/arb_string.h
adquery.o: $(ARBHOME)/INCLUDE/arbtools.h
adquery.o: $(ARBHOME)/INCLUDE/attributes.h
adquery.o: $(ARBHOME)/INCLUDE/cb.h
adquery.o: $(ARBHOME)/INCLUDE/cb_base.h
adquery.o: $(ARBHOME)/INCLUDE/cbtypes.h
adquery.o: $(ARBHOME)/INCLUDE/cxxforward.h
adquery.o: $(ARBHOME)/INCLUDE/downcast.h
adquery.o: $(ARBHOME)/INCLUDE/dupstr.h
adquery.o: $(ARBHOME)/INCLUDE/gccver.h
adquery.o: $(ARBHOME)/INCLUDE/smartptr.h
adquery.o: $(ARBHOME)/INCLUDE/static_assert.h
adquery.o: $(ARBHOME)/INCLUDE/stringize.h
adquery.o: $(ARBHOME)/INCLUDE/test_global.h
adquery.o: $(ARBHOME)/INCLUDE/test_unit.h
adquery.o: $(ARBHOME)/INCLUDE/ttypes.h

adRevCompl.o: ad_prot.h
adRevCompl.o: ad_t_prot.h
adRevCompl.o: arbdb.h
adRevCompl.o: arbdb_base.h
adRevCompl.o: arbdbt.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arb_assert.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arb_core.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arb_error.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arb_mem.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arb_msg.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arb_string.h
adRevCompl.o: $(ARBHOME)/INCLUDE/arbtools.h
adRevCompl.o: $(ARBHOME)/INCLUDE/attributes.h
adRevCompl.o: $(ARBHOME)/INCLUDE/cxxforward.h
adRevCompl.o: $(ARBHOME)/INCLUDE/downcast.h
adRevCompl.o: $(ARBHOME)/INCLUDE/dupstr.h
adRevCompl.o: $(ARBHOME)/INCLUDE/gccver.h
adRevCompl.o: $(ARBHOME)/INCLUDE/smartptr.h
adRevCompl.o: $(ARBHOME)/INCLUDE/static_assert.h
adRevCompl.o: $(ARBHOME)/INCLUDE/stringize.h
adRevCompl.o: $(ARBHOME)/INCLUDE/test_global.h

adseqcompr.o: ad_cb.h
adseqcompr.o: ad_cb_prot.h
adseqcompr.o: ad_prot.h
adseqcompr.o: ad_t_prot.h
adseqcompr.o: arbdb.h
adseqcompr.o: arbdb_base.h
adseqcompr.o: arbdbt.h
adseqcompr.o: gb_cb.h
adseqcompr.o: gb_data.h
adseqcompr.o: gb_header.h
adseqcompr.o: gb_key.h
adseqcompr.o: gb_local.h
adseqcompr.o: gb_main.h
adseqcompr.o: gb_memory.h
adseqcompr.o: gb_prot.h
adseqcompr.o: gb_storage.h
adseqcompr.o: gb_tune.h
adseqcompr.o: TreeNode.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_assert.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_core.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_diff.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_error.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_file.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_mem.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_misc.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_msg.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_progress.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arb_string.h
adseqcompr.o: $(ARBHOME)/INCLUDE/arbtools.h
adseqcompr.o: $(ARBHOME)/INCLUDE/attributes.h
adseqcompr.o: $(ARBHOME)/INCLUDE/cb.h
adseqcompr.o: $(ARBHOME)/INCLUDE/cb_base.h
adseqcompr.o: $(ARBHOME)/INCLUDE/cbtypes.h
adseqcompr.o: $(ARBHOME)/INCLUDE/cxxforward.h
adseqcompr.o: $(ARBHOME)/INCLUDE/downcast.h
adseqcompr.o: $(ARBHOME)/INCLUDE/dupstr.h
adseqcompr.o: $(ARBHOME)/INCLUDE/gccver.h
adseqcompr.o: $(ARBHOME)/INCLUDE/smartptr.h
adseqcompr.o: $(ARBHOME)/INCLUDE/static_assert.h
adseqcompr.o: $(ARBHOME)/INCLUDE/stringize.h
adseqcompr.o: $(ARBHOME)/INCLUDE/test_global.h
adseqcompr.o: $(ARBHOME)/INCLUDE/test_unit.h
adseqcompr.o: $(ARBHOME)/INCLUDE/ttypes.h

adsocket.o: ad_prot.h
adsocket.o: arbdb.h
adsocket.o: arbdb_base.h
adsocket.o: gb_comm.h
adsocket.o: gb_data.h
adsocket.o: gb_local.h
adsocket.o: gb_localdata.h
adsocket.o: gb_memory.h
adsocket.o: gb_prot.h
adsocket.o: gb_storage.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_assert.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_core.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_cs.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_defs.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_error.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_file.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_mem.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_misc.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_msg.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_pathlen.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_sleep.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_str.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adsocket.o: $(ARBHOME)/INCLUDE/arb_string.h
adsocket.o: $(ARBHOME)/INCLUDE/arbtools.h
adsocket.o: $(ARBHOME)/INCLUDE/attributes.h
adsocket.o: $(ARBHOME)/INCLUDE/cxxforward.h
adsocket.o: $(ARBHOME)/INCLUDE/dupstr.h
adsocket.o: $(ARBHOME)/INCLUDE/gccver.h
adsocket.o: $(ARBHOME)/INCLUDE/SigHandler.h
adsocket.o: $(ARBHOME)/INCLUDE/smartptr.h
adsocket.o: $(ARBHOME)/INCLUDE/static_assert.h
adsocket.o: $(ARBHOME)/INCLUDE/stringize.h
adsocket.o: $(ARBHOME)/INCLUDE/test_global.h
adsocket.o: $(ARBHOME)/INCLUDE/test_unit.h

adstring.o: ad_prot.h
adstring.o: ad_t_prot.h
adstring.o: arbdb.h
adstring.o: arbdb_base.h
adstring.o: arbdbt.h
adstring.o: gb_aci.h
adstring.o: gb_cb.h
adstring.o: gb_data.h
adstring.o: gb_header.h
adstring.o: gb_key.h
adstring.o: gb_local.h
adstring.o: gb_main.h
adstring.o: gb_memory.h
adstring.o: gb_prot.h
adstring.o: gb_storage.h
adstring.o: gb_tune.h
adstring.o: $(ARBHOME)/INCLUDE/arb_assert.h
adstring.o: $(ARBHOME)/INCLUDE/arb_backtrace.h
adstring.o: $(ARBHOME)/INCLUDE/arb_core.h
adstring.o: $(ARBHOME)/INCLUDE/arb_defs.h
adstring.o: $(ARBHOME)/INCLUDE/arb_error.h
adstring.o: $(ARBHOME)/INCLUDE/arb_mem.h
adstring.o: $(ARBHOME)/INCLUDE/arb_msg.h
adstring.o: $(ARBHOME)/INCLUDE/arb_str.h
adstring.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adstring.o: $(ARBHOME)/INCLUDE/arb_string.h
adstring.o: $(ARBHOME)/INCLUDE/arbtools.h
adstring.o: $(ARBHOME)/INCLUDE/attributes.h
adstring.o: $(ARBHOME)/INCLUDE/cb.h
adstring.o: $(ARBHOME)/INCLUDE/cb_base.h
adstring.o: $(ARBHOME)/INCLUDE/cbtypes.h
adstring.o: $(ARBHOME)/INCLUDE/cxxforward.h
adstring.o: $(ARBHOME)/INCLUDE/downcast.h
adstring.o: $(ARBHOME)/INCLUDE/dupstr.h
adstring.o: $(ARBHOME)/INCLUDE/gccver.h
adstring.o: $(ARBHOME)/INCLUDE/SigHandler.h
adstring.o: $(ARBHOME)/INCLUDE/smartptr.h
adstring.o: $(ARBHOME)/INCLUDE/static_assert.h
adstring.o: $(ARBHOME)/INCLUDE/stringize.h
adstring.o: $(ARBHOME)/INCLUDE/test_global.h
adstring.o: $(ARBHOME)/INCLUDE/test_unit.h
adstring.o: $(ARBHOME)/INCLUDE/ttypes.h
adstring.o: $(ARBHOME)/INCLUDE/valgrind.h

adsystem.o: ad_cb.h
adsystem.o: ad_cb_prot.h
adsystem.o: ad_prot.h
adsystem.o: ad_t_prot.h
adsystem.o: arbdb.h
adsystem.o: arbdb_base.h
adsystem.o: arbdbt.h
adsystem.o: gb_cb.h
adsystem.o: gb_data.h
adsystem.o: gb_dict.h
adsystem.o: gb_header.h
adsystem.o: gb_key.h
adsystem.o: gb_local.h
adsystem.o: gb_main.h
adsystem.o: gb_memory.h
adsystem.o: gb_prot.h
adsystem.o: gb_storage.h
adsystem.o: gb_tune.h
adsystem.o: $(ARBHOME)/INCLUDE/arb_assert.h
adsystem.o: $(ARBHOME)/INCLUDE/arb_core.h
adsystem.o: $(ARBHOME)/INCLUDE/arb_error.h
adsystem.o: $(ARBHOME)/INCLUDE/arb_mem.h
adsystem.o: $(ARBHOME)/INCLUDE/arb_msg.h
adsystem.o: $(ARBHOME)/INCLUDE/arb_string.h
adsystem.o: $(ARBHOME)/INCLUDE/arbtools.h
adsystem.o: $(ARBHOME)/INCLUDE/attributes.h
adsystem.o: $(ARBHOME)/INCLUDE/cb.h
adsystem.o: $(ARBHOME)/INCLUDE/cb_base.h
adsystem.o: $(ARBHOME)/INCLUDE/cbtypes.h
adsystem.o: $(ARBHOME)/INCLUDE/cxxforward.h
adsystem.o: $(ARBHOME)/INCLUDE/downcast.h
adsystem.o: $(ARBHOME)/INCLUDE/dupstr.h
adsystem.o: $(ARBHOME)/INCLUDE/gccver.h
adsystem.o: $(ARBHOME)/INCLUDE/smartptr.h
adsystem.o: $(ARBHOME)/INCLUDE/static_assert.h
adsystem.o: $(ARBHOME)/INCLUDE/stringize.h
adsystem.o: $(ARBHOME)/INCLUDE/test_global.h
adsystem.o: $(ARBHOME)/INCLUDE/ttypes.h

adtcp.o: ad_prot.h
adtcp.o: ad_t_prot.h
adtcp.o: arbdb.h
adtcp.o: arbdb_base.h
adtcp.o: arbdbt.h
adtcp.o: gb_local.h
adtcp.o: gb_prot.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_assert.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_core.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_error.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_mem.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_msg.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_str.h
adtcp.o: $(ARBHOME)/INCLUDE/arb_string.h
adtcp.o: $(ARBHOME)/INCLUDE/arbtools.h
adtcp.o: $(ARBHOME)/INCLUDE/attributes.h
adtcp.o: $(ARBHOME)/INCLUDE/cxxforward.h
adtcp.o: $(ARBHOME)/INCLUDE/downcast.h
adtcp.o: $(ARBHOME)/INCLUDE/dupstr.h
adtcp.o: $(ARBHOME)/INCLUDE/gccver.h
adtcp.o: $(ARBHOME)/INCLUDE/smartptr.h
adtcp.o: $(ARBHOME)/INCLUDE/static_assert.h
adtcp.o: $(ARBHOME)/INCLUDE/stringize.h
adtcp.o: $(ARBHOME)/INCLUDE/test_global.h
adtcp.o: $(ARBHOME)/INCLUDE/test_unit.h

adTest.o: ad_prot.h
adTest.o: arbdb.h
adTest.o: arbdb_base.h
adTest.o: gb_cb.h
adTest.o: gb_data.h
adTest.o: gb_header.h
adTest.o: gb_key.h
adTest.o: gb_local.h
adTest.o: gb_main.h
adTest.o: gb_memory.h
adTest.o: gb_prot.h
adTest.o: gb_storage.h
adTest.o: gb_tune.h
adTest.o: $(ARBHOME)/INCLUDE/arb_assert.h
adTest.o: $(ARBHOME)/INCLUDE/arb_core.h
adTest.o: $(ARBHOME)/INCLUDE/arb_error.h
adTest.o: $(ARBHOME)/INCLUDE/arb_mem.h
adTest.o: $(ARBHOME)/INCLUDE/arb_misc.h
adTest.o: $(ARBHOME)/INCLUDE/arb_msg.h
adTest.o: $(ARBHOME)/INCLUDE/arb_string.h
adTest.o: $(ARBHOME)/INCLUDE/arbtools.h
adTest.o: $(ARBHOME)/INCLUDE/attributes.h
adTest.o: $(ARBHOME)/INCLUDE/cb.h
adTest.o: $(ARBHOME)/INCLUDE/cb_base.h
adTest.o: $(ARBHOME)/INCLUDE/cbtypes.h
adTest.o: $(ARBHOME)/INCLUDE/cxxforward.h
adTest.o: $(ARBHOME)/INCLUDE/dupstr.h
adTest.o: $(ARBHOME)/INCLUDE/gccver.h
adTest.o: $(ARBHOME)/INCLUDE/smartptr.h
adTest.o: $(ARBHOME)/INCLUDE/static_assert.h
adTest.o: $(ARBHOME)/INCLUDE/stringize.h
adTest.o: $(ARBHOME)/INCLUDE/test_global.h
adTest.o: $(ARBHOME)/INCLUDE/test_unit.h
adTest.o: $(ARBHOME)/INCLUDE/ttypes.h

adtools.o: ad_cb.h
adtools.o: ad_cb_prot.h
adtools.o: ad_prot.h
adtools.o: ad_remote.h
adtools.o: ad_t_prot.h
adtools.o: arbdb.h
adtools.o: arbdb_base.h
adtools.o: arbdbt.h
adtools.o: gb_cb.h
adtools.o: gb_data.h
adtools.o: gb_local.h
adtools.o: gb_main.h
adtools.o: gb_memory.h
adtools.o: gb_prot.h
adtools.o: gb_storage.h
adtools.o: $(ARBHOME)/INCLUDE/arb_assert.h
adtools.o: $(ARBHOME)/INCLUDE/arb_core.h
adtools.o: $(ARBHOME)/INCLUDE/arb_error.h
adtools.o: $(ARBHOME)/INCLUDE/arb_file.h
adtools.o: $(ARBHOME)/INCLUDE/arb_mem.h
adtools.o: $(ARBHOME)/INCLUDE/arb_msg.h
adtools.o: $(ARBHOME)/INCLUDE/arb_sleep.h
adtools.o: $(ARBHOME)/INCLUDE/arb_sort.h
adtools.o: $(ARBHOME)/INCLUDE/arb_str.h
adtools.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adtools.o: $(ARBHOME)/INCLUDE/arb_string.h
adtools.o: $(ARBHOME)/INCLUDE/arbtools.h
adtools.o: $(ARBHOME)/INCLUDE/attributes.h
adtools.o: $(ARBHOME)/INCLUDE/cb.h
adtools.o: $(ARBHOME)/INCLUDE/cb_base.h
adtools.o: $(ARBHOME)/INCLUDE/cbtypes.h
adtools.o: $(ARBHOME)/INCLUDE/cxxforward.h
adtools.o: $(ARBHOME)/INCLUDE/downcast.h
adtools.o: $(ARBHOME)/INCLUDE/dupstr.h
adtools.o: $(ARBHOME)/INCLUDE/gccver.h
adtools.o: $(ARBHOME)/INCLUDE/smartptr.h
adtools.o: $(ARBHOME)/INCLUDE/static_assert.h
adtools.o: $(ARBHOME)/INCLUDE/stringize.h
adtools.o: $(ARBHOME)/INCLUDE/test_global.h
adtools.o: $(ARBHOME)/INCLUDE/test_unit.h
adtools.o: $(ARBHOME)/INCLUDE/ttypes.h

adtree.o: ad_prot.h
adtree.o: ad_t_prot.h
adtree.o: arbdb.h
adtree.o: arbdb_base.h
adtree.o: arbdbt.h
adtree.o: gb_local.h
adtree.o: gb_prot.h
adtree.o: TreeNode.h
adtree.o: $(ARBHOME)/INCLUDE/arb_assert.h
adtree.o: $(ARBHOME)/INCLUDE/arb_core.h
adtree.o: $(ARBHOME)/INCLUDE/arb_defs.h
adtree.o: $(ARBHOME)/INCLUDE/arb_diff.h
adtree.o: $(ARBHOME)/INCLUDE/arb_error.h
adtree.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
adtree.o: $(ARBHOME)/INCLUDE/arb_match.h
adtree.o: $(ARBHOME)/INCLUDE/arb_mem.h
adtree.o: $(ARBHOME)/INCLUDE/arb_msg.h
adtree.o: $(ARBHOME)/INCLUDE/arb_msg_nospam.h
adtree.o: $(ARBHOME)/INCLUDE/arb_progress.h
adtree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
adtree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
adtree.o: $(ARBHOME)/INCLUDE/arb_string.h
adtree.o: $(ARBHOME)/INCLUDE/arbtools.h
adtree.o: $(ARBHOME)/INCLUDE/attributes.h
adtree.o: $(ARBHOME)/INCLUDE/cxxforward.h
adtree.o: $(ARBHOME)/INCLUDE/downcast.h
adtree.o: $(ARBHOME)/INCLUDE/dupstr.h
adtree.o: $(ARBHOME)/INCLUDE/gccver.h
adtree.o: $(ARBHOME)/INCLUDE/smartptr.h
adtree.o: $(ARBHOME)/INCLUDE/static_assert.h
adtree.o: $(ARBHOME)/INCLUDE/stringize.h
adtree.o: $(ARBHOME)/INCLUDE/test_global.h
adtree.o: $(ARBHOME)/INCLUDE/test_unit.h

adtune.o: gb_tune.h

arbdb.o: ad_prot.h
arbdb.o: ad_t_prot.h
arbdb.o: adperl.h
arbdb.o: arbdb.h
arbdb.o: arbdb_base.h
arbdb.o: arbdbt.h
arbdb.o: gb_cb.h
arbdb.o: gb_comm.h
arbdb.o: gb_compress.h
arbdb.o: gb_data.h
arbdb.o: gb_header.h
arbdb.o: gb_index.h
arbdb.o: gb_key.h
arbdb.o: gb_local.h
arbdb.o: gb_localdata.h
arbdb.o: gb_main.h
arbdb.o: gb_memory.h
arbdb.o: gb_prot.h
arbdb.o: gb_storage.h
arbdb.o: gb_ta.h
arbdb.o: gb_ts.h
arbdb.o: gb_tune.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_assert.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_core.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_diff.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_error.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_file.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_mem.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_misc.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_msg.h
arbdb.o: $(ARBHOME)/INCLUDE/arb_string.h
arbdb.o: $(ARBHOME)/INCLUDE/arbtools.h
arbdb.o: $(ARBHOME)/INCLUDE/attributes.h
arbdb.o: $(ARBHOME)/INCLUDE/cb.h
arbdb.o: $(ARBHOME)/INCLUDE/cb_base.h
arbdb.o: $(ARBHOME)/INCLUDE/cbtypes.h
arbdb.o: $(ARBHOME)/INCLUDE/cxxforward.h
arbdb.o: $(ARBHOME)/INCLUDE/downcast.h
arbdb.o: $(ARBHOME)/INCLUDE/dupstr.h
arbdb.o: $(ARBHOME)/INCLUDE/gccver.h
arbdb.o: $(ARBHOME)/INCLUDE/smartptr.h
arbdb.o: $(ARBHOME)/INCLUDE/static_assert.h
arbdb.o: $(ARBHOME)/INCLUDE/stringize.h
arbdb.o: $(ARBHOME)/INCLUDE/test_global.h
arbdb.o: $(ARBHOME)/INCLUDE/test_unit.h
arbdb.o: $(ARBHOME)/INCLUDE/ttypes.h

arbdbpp.o: ad_prot.h
arbdbpp.o: arbdb.h
arbdbpp.o: arbdb_base.h
arbdbpp.o: gb_local.h
arbdbpp.o: gb_prot.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arb_assert.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arb_core.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arb_error.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arb_mem.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arb_msg.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arb_string.h
arbdbpp.o: $(ARBHOME)/INCLUDE/arbtools.h
arbdbpp.o: $(ARBHOME)/INCLUDE/attributes.h
arbdbpp.o: $(ARBHOME)/INCLUDE/cxxforward.h
arbdbpp.o: $(ARBHOME)/INCLUDE/dupstr.h
arbdbpp.o: $(ARBHOME)/INCLUDE/gccver.h
arbdbpp.o: $(ARBHOME)/INCLUDE/smartptr.h
arbdbpp.o: $(ARBHOME)/INCLUDE/test_global.h

gb_aci.o: ad_prot.h
gb_aci.o: ad_t_prot.h
gb_aci.o: arbdb.h
gb_aci.o: arbdb_base.h
gb_aci.o: arbdbt.h
gb_aci.o: gb_aci.h
gb_aci.o: gb_aci_impl.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_assert.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_core.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_defs.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_error.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_match.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_mem.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_msg.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_str.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
gb_aci.o: $(ARBHOME)/INCLUDE/arb_string.h
gb_aci.o: $(ARBHOME)/INCLUDE/arbtools.h
gb_aci.o: $(ARBHOME)/INCLUDE/attributes.h
gb_aci.o: $(ARBHOME)/INCLUDE/cxxforward.h
gb_aci.o: $(ARBHOME)/INCLUDE/downcast.h
gb_aci.o: $(ARBHOME)/INCLUDE/dupstr.h
gb_aci.o: $(ARBHOME)/INCLUDE/gccver.h
gb_aci.o: $(ARBHOME)/INCLUDE/smartptr.h
gb_aci.o: $(ARBHOME)/INCLUDE/static_assert.h
gb_aci.o: $(ARBHOME)/INCLUDE/stringize.h
gb_aci.o: $(ARBHOME)/INCLUDE/test_global.h
gb_aci.o: $(ARBHOME)/INCLUDE/test_unit.h

TreeNode.o: ad_prot.h
TreeNode.o: ad_t_prot.h
TreeNode.o: arbdb.h
TreeNode.o: arbdb_base.h
TreeNode.o: arbdbt.h
TreeNode.o: TreeNode.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_assert.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_core.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_error.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_mem.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_msg.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_progress.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_str.h
TreeNode.o: $(ARBHOME)/INCLUDE/arb_string.h
TreeNode.o: $(ARBHOME)/INCLUDE/arbtools.h
TreeNode.o: $(ARBHOME)/INCLUDE/attributes.h
TreeNode.o: $(ARBHOME)/INCLUDE/cxxforward.h
TreeNode.o: $(ARBHOME)/INCLUDE/downcast.h
TreeNode.o: $(ARBHOME)/INCLUDE/dupstr.h
TreeNode.o: $(ARBHOME)/INCLUDE/gccver.h
TreeNode.o: $(ARBHOME)/INCLUDE/smartptr.h
TreeNode.o: $(ARBHOME)/INCLUDE/static_assert.h
TreeNode.o: $(ARBHOME)/INCLUDE/stringize.h
TreeNode.o: $(ARBHOME)/INCLUDE/test_global.h
TreeNode.o: $(ARBHOME)/INCLUDE/test_unit.h