[5238] | 1 | .SUFFIXES: .c .cxx .depend .o |
---|
[2] | 2 | |
---|
[5238] | 3 | TOOLS := \ |
---|
| 4 | arb_2_ascii \ |
---|
| 5 | arb_2_bin \ |
---|
| 6 | arb_a2ps \ |
---|
[16919] | 7 | arb_calc_pvp \ |
---|
[8453] | 8 | arb_consensus_tree \ |
---|
[5238] | 9 | arb_dnarates \ |
---|
[18437] | 10 | arb_export_newick \ |
---|
[5238] | 11 | arb_export_rates \ |
---|
[13191] | 12 | arb_export_sequences \ |
---|
[16119] | 13 | arb_export_seq_filtered \ |
---|
[5238] | 14 | arb_export_tree \ |
---|
[13191] | 15 | arb_flush_mem \ |
---|
[5238] | 16 | arb_gene_probe \ |
---|
| 17 | arb_message \ |
---|
| 18 | arb_primer \ |
---|
| 19 | arb_probe \ |
---|
[13191] | 20 | arb_probe_match \ |
---|
[5238] | 21 | arb_read_tree \ |
---|
[15425] | 22 | arb_write_tree_comment \ |
---|
[5238] | 23 | arb_replace \ |
---|
[2] | 24 | |
---|
[5238] | 25 | ifeq ($(DEBUG),1) |
---|
[16119] | 26 | TOOLS += arb_test arb_perf_test |
---|
[7189] | 27 | else |
---|
| 28 | ifeq ($(UNIT_TESTS),1) |
---|
[16919] | 29 | # DEBUG!=1 && UNIT_TESTS=1 |
---|
[7189] | 30 | TOOLS += arb_test |
---|
[5238] | 31 | endif |
---|
[7189] | 32 | endif |
---|
[16919] | 33 | |
---|
| 34 | ifeq ($(UNIT_TESTS),1) |
---|
| 35 | TOOLS += arb_sub2ascii |
---|
| 36 | endif |
---|
| 37 | |
---|
[16119] | 38 | # Note: you can define explicit test-dependencies for tools tested via 'arb_test' |
---|
| 39 | # see ../UNIT_TESTER/Makefile.test@EXTRA_TEST_DEPENDENCIES |
---|
[2] | 40 | |
---|
[16119] | 41 | |
---|
[10577] | 42 | # ------------------------------------------------------------ |
---|
| 43 | # if you change lib-dependencies here, |
---|
| 44 | # please update corresponding definitions in ../BINDEP/ |
---|
[13765] | 45 | # and in ../Makefile@TOOLSLIBDEPENDS |
---|
[10577] | 46 | |
---|
[18981] | 47 | LIB_ARBDB := $(LIBPATH) $(ARBDB_LIB) $(ARB_CORE_LIBS) |
---|
[12592] | 48 | LIBS_ARB_PROBE := ../SERVERCNTRL/SERVERCNTRL.a ../PROBE_COM/client.a ../SL/REGEXPR/REGEXPR.a |
---|
[8453] | 49 | LIBS_ARB_READ_TREE := ../SL/TREE_READ/TREE_READ.a |
---|
| 50 | LIBS_ARB_EXPORT_TREE := ../SL/TREE_WRITE/TREE_WRITE.a ../XML/XML.a $(LIBS_ARB_READ_TREE) |
---|
[18092] | 51 | LIBS_ARB_EXPORT_SEQ := ../SL/SEQIO/SEQIO.a ../SL/XFERSET/XFERSET.a ../XML/XML.a ../SL/INSDEL/INSDEL.a ../SL/FILTER/FILTER.a |
---|
[16119] | 52 | LIBS_ARB_EXPORT_SEQ_FILT:= ../SL/FILTSEQEXP/FILTSEQEXP.a ../SL/FILTER/FILTER.a |
---|
[16919] | 53 | LIBS_ARB_CALC_PVP := $(LIBS_ARB_READ_TREE) ../SL/PVP/PVP.a ../SL/PRONUC/PRONUC.a |
---|
[13625] | 54 | LIBS_ARB_CONSENSUS_TREE := $(LIBS_ARB_EXPORT_TREE) ../CONSENSUS_TREE/CONSENSUS_TREE.a |
---|
[2] | 55 | |
---|
[5238] | 56 | OBJECTS:=$(addsuffix .o,$(TOOLS)) |
---|
| 57 | BINARIES:=$(addprefix $(ARBHOME)/bin/,$(TOOLS)) |
---|
[2] | 58 | |
---|
[4635] | 59 | all: $(BINARIES) |
---|
[1737] | 60 | |
---|
[16223] | 61 | %.o: %.cxx |
---|
[13443] | 62 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
[2] | 63 | |
---|
[5305] | 64 | %.o: %.c |
---|
[19446] | 65 | $(A_CC) $(cflags) $(onlyC_flags) -c $< $(CC_INCLUDES) $(POST_COMPILE) $< |
---|
[2] | 66 | |
---|
[11656] | 67 | $(ARBHOME)/bin/arb_probe: arb_probe.o $(LIBS_ARB_PROBE) $(use_ARB_main) |
---|
[16223] | 68 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_PROBE) $(LIB_ARBDB) |
---|
[2] | 69 | |
---|
[13191] | 70 | $(ARBHOME)/bin/arb_probe_match: arb_probe_match.o $(LIBS_ARB_PROBE) $(use_ARB_main) |
---|
[16223] | 71 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_PROBE) $(LIB_ARBDB) |
---|
[13191] | 72 | |
---|
[6023] | 73 | $(ARBHOME)/bin/arb_read_tree: arb_read_tree.o $(LIBS_ARB_READ_TREE) |
---|
[16223] | 74 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_READ_TREE) $(LIB_ARBDB) |
---|
[6023] | 75 | |
---|
[15425] | 76 | $(ARBHOME)/bin/arb_write_tree_comment: arb_write_tree_comment.o |
---|
[16223] | 77 | $(LINK_EXECUTABLE) $@ $< $(LIB_ARBDB) |
---|
[15425] | 78 | |
---|
[6065] | 79 | $(ARBHOME)/bin/arb_export_tree: arb_export_tree.o $(LIBS_ARB_EXPORT_TREE) |
---|
[16223] | 80 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_TREE) $(LIB_ARBDB) |
---|
[6065] | 81 | |
---|
[18437] | 82 | $(ARBHOME)/bin/arb_export_newick: arb_export_newick.o $(LIBS_ARB_EXPORT_TREE) |
---|
| 83 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_TREE) $(LIB_ARBDB) |
---|
| 84 | |
---|
[13191] | 85 | $(ARBHOME)/bin/arb_export_sequences: arb_export_sequences.o $(LIBS_ARB_EXPORT_SEQ) |
---|
[16223] | 86 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_SEQ) $(LIB_ARBDB) |
---|
[13191] | 87 | |
---|
[16119] | 88 | $(ARBHOME)/bin/arb_export_seq_filtered: arb_export_seq_filtered.o $(LIBS_ARB_EXPORT_SEQ_FILT) |
---|
[16223] | 89 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_SEQ_FILT) $(LIB_ARBDB) |
---|
[16119] | 90 | |
---|
[16919] | 91 | $(ARBHOME)/bin/arb_calc_pvp: arb_calc_pvp.o $(LIBS_ARB_CALC_PVP) |
---|
| 92 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_CALC_PVP) $(LIB_ARBDB) |
---|
| 93 | |
---|
[11656] | 94 | $(ARBHOME)/bin/arb_consensus_tree: arb_consensus_tree.o $(LIBS_ARB_CONSENSUS_TREE) $(use_ARB_main) |
---|
[16223] | 95 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_CONSENSUS_TREE) $(LIB_ARBDB) |
---|
[8453] | 96 | |
---|
[11656] | 97 | $(ARBHOME)/bin/arb_a2ps: arb_a2ps.o $(use_ARB_main_C) |
---|
[16223] | 98 | $(LINK_EXECUTABLE) $@ $(use_ARB_main_C) $< $(LIB_ARBDB) |
---|
[8247] | 99 | |
---|
[18283] | 100 | $(ARBHOME)/bin/arb_2_bin: arb_2_bin.o $(LIBS_ARB_READ_TREE) |
---|
| 101 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_READ_TREE) $(LIB_ARBDB) |
---|
| 102 | |
---|
[11656] | 103 | $(ARBHOME)/bin/%: %.o $(use_ARB_main) |
---|
[16223] | 104 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIB_ARBDB) |
---|
[4635] | 105 | |
---|
| 106 | clean: |
---|
| 107 | rm -f $(BINARIES) |
---|
[5238] | 108 | rm -f $(OBJECTS) |
---|
[4635] | 109 | |
---|
[7184] | 110 | proto: |
---|
| 111 | @echo "Nothing todo for proto in TOOLS" |
---|
| 112 | |
---|
[5891] | 113 | depends: |
---|
[17050] | 114 | $(MAKE) "DEBUG=1" "UNIT_TESTS=1" depends_debug |
---|
[5891] | 115 | |
---|
[5238] | 116 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
[18729] | 117 | depends_debug: $(DEPENDS) |
---|
[1617] | 118 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
[1739] | 119 | @rm $(DEPENDS) |
---|
[1617] | 120 | $(DEPENDS): depend.init |
---|
| 121 | depend.init: |
---|
| 122 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
[5238] | 123 | .cxx.depend: |
---|
| 124 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
[1617] | 125 | .c.depend: |
---|
[5238] | 126 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
[2] | 127 | |
---|
[518] | 128 | # DO NOT DELETE |
---|
[2] | 129 | |
---|
[2338] | 130 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
[9575] | 131 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
---|
[1617] | 132 | |
---|
[5238] | 133 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 134 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 135 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 136 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[7915] | 137 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
---|
[15176] | 138 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 139 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 140 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 141 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 142 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[6318] | 143 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 144 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 145 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[6331] | 146 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 147 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 148 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[6817] | 149 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[1617] | 150 | |
---|
[5238] | 151 | arb_2_bin.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 152 | arb_2_bin.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 153 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 154 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 155 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 156 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 157 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 158 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 159 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 160 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 161 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 162 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 163 | arb_2_bin.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 164 | arb_2_bin.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 165 | arb_2_bin.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 166 | arb_2_bin.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 167 | arb_2_bin.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 168 | arb_2_bin.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 169 | arb_2_bin.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 170 | arb_2_bin.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 171 | arb_2_bin.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[18283] | 172 | arb_2_bin.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
| 173 | arb_2_bin.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
[1617] | 174 | |
---|
[16919] | 175 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 176 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 177 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 178 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 179 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 180 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
| 181 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 182 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 183 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 184 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 185 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 186 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 187 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 188 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 189 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
| 190 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 191 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 192 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/pvp.h |
---|
| 193 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 194 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 195 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[16919] | 196 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 197 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
| 198 | |
---|
[8453] | 199 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 200 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 201 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 202 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[11401] | 203 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
[10704] | 204 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
[8453] | 205 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 206 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
[15176] | 207 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[8453] | 208 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[11401] | 209 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
[8453] | 210 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
| 211 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
| 212 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 213 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 214 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 215 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 216 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 217 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 218 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
[9451] | 219 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/command_output.h |
---|
[18634] | 220 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/CT_common.hxx |
---|
[8453] | 221 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx |
---|
[9521] | 222 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 223 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[8453] | 224 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 225 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[8453] | 226 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/nds.h |
---|
| 227 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 228 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 229 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[8453] | 230 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 231 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
[18704] | 232 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeLabeler.h |
---|
[13625] | 233 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
[8453] | 234 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
| 235 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
---|
[18959] | 236 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/triangular.h |
---|
[8453] | 237 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h |
---|
| 238 | |
---|
[5238] | 239 | arb_dnarates.o: DNAml_rates_1_0.h |
---|
| 240 | arb_dnarates.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 241 | arb_dnarates.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 242 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 243 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 244 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 245 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 246 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 247 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 248 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 249 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 250 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 251 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 252 | arb_dnarates.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[7916] | 253 | arb_dnarates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
[9521] | 254 | arb_dnarates.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 255 | arb_dnarates.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 256 | arb_dnarates.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 257 | arb_dnarates.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 258 | arb_dnarates.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 259 | arb_dnarates.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 260 | arb_dnarates.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 261 | arb_dnarates.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[1617] | 262 | |
---|
[18437] | 263 | arb_export_newick.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 264 | arb_export_newick.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 265 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 266 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 267 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 268 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
| 269 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
---|
| 270 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
| 271 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 272 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
| 273 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 274 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 275 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 276 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 277 | arb_export_newick.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 278 | arb_export_newick.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 279 | arb_export_newick.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
| 280 | arb_export_newick.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 281 | arb_export_newick.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
| 282 | arb_export_newick.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 283 | arb_export_newick.o: $(ARBHOME)/INCLUDE/gb_aci.h |
---|
| 284 | arb_export_newick.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 285 | arb_export_newick.o: $(ARBHOME)/INCLUDE/nds.h |
---|
| 286 | arb_export_newick.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 287 | arb_export_newick.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 288 | arb_export_newick.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[18437] | 289 | arb_export_newick.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[18704] | 290 | arb_export_newick.o: $(ARBHOME)/INCLUDE/TreeLabeler.h |
---|
[18437] | 291 | arb_export_newick.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
| 292 | arb_export_newick.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
---|
| 293 | |
---|
[5238] | 294 | arb_export_rates.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 295 | arb_export_rates.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 296 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 297 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 298 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 299 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 300 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 301 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 302 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 303 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 304 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 305 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 306 | arb_export_rates.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[7916] | 307 | arb_export_rates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
[9521] | 308 | arb_export_rates.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 309 | arb_export_rates.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 310 | arb_export_rates.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 311 | arb_export_rates.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 312 | arb_export_rates.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 313 | arb_export_rates.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 314 | arb_export_rates.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 315 | arb_export_rates.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[1617] | 316 | |
---|
[16119] | 317 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 318 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 319 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/AP_filter.hxx |
---|
| 320 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 321 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 322 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 323 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
| 324 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
| 325 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 326 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 327 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 328 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 329 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 330 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 331 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 332 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 333 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
| 334 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 335 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/FilteredExport.h |
---|
| 336 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 337 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 338 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 339 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[16119] | 340 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 341 | |
---|
[13191] | 342 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 343 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 344 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/AP_filter.hxx |
---|
| 345 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 346 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 347 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 348 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
[15176] | 349 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[13191] | 350 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 351 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 352 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 353 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 354 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 355 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 356 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 357 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 358 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
| 359 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 360 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 361 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/insdel.h |
---|
| 362 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/seqio.hxx |
---|
| 363 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 364 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 365 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[13191] | 366 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 367 | |
---|
[5238] | 368 | arb_export_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 369 | arb_export_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 370 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 371 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 372 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[8558] | 373 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
[7915] | 374 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
---|
[15176] | 375 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 376 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 377 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 378 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 379 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 380 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 381 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 382 | arb_export_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[6868] | 383 | arb_export_tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
[9521] | 384 | arb_export_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 385 | arb_export_tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 386 | arb_export_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 387 | arb_export_tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[7801] | 388 | arb_export_tree.o: $(ARBHOME)/INCLUDE/nds.h |
---|
[6318] | 389 | arb_export_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 390 | arb_export_tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 391 | arb_export_tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 392 | arb_export_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[18704] | 393 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeLabeler.h |
---|
[13625] | 394 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
[6065] | 395 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
---|
[1617] | 396 | |
---|
[11060] | 397 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 398 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 399 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 400 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 401 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[11060] | 402 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_misc.h |
---|
| 403 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 404 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
| 405 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 406 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 407 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 408 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 409 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 410 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 411 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 412 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 413 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 414 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 415 | |
---|
[5238] | 416 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 417 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 418 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/adGene.h |
---|
| 419 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 420 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 421 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 422 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 423 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 424 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 425 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 426 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 427 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 428 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 429 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 430 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 431 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 432 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 433 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 434 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 435 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 436 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 437 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[3400] | 438 | |
---|
[5238] | 439 | arb_message.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 440 | arb_message.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 441 | arb_message.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 442 | arb_message.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 443 | arb_message.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 444 | arb_message.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 445 | arb_message.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 446 | arb_message.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 447 | arb_message.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 448 | arb_message.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 449 | arb_message.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 450 | arb_message.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 451 | arb_message.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 452 | arb_message.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 453 | arb_message.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 454 | arb_message.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 455 | arb_message.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 456 | arb_message.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 457 | arb_message.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 458 | arb_message.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 459 | arb_message.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[1617] | 460 | |
---|
[5872] | 461 | arb_perf_test.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 462 | arb_perf_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 463 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 464 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 465 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 466 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 467 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 468 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5872] | 469 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 470 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 471 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 472 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5872] | 473 | arb_perf_test.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 474 | arb_perf_test.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 475 | arb_perf_test.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 476 | arb_perf_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 477 | arb_perf_test.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 478 | arb_perf_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 479 | arb_perf_test.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 480 | arb_perf_test.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 481 | arb_perf_test.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[5872] | 482 | |
---|
[5238] | 483 | arb_primer.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 484 | arb_primer.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 485 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 486 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 487 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 488 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 489 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[7770] | 490 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
[7183] | 491 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 492 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 493 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 494 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 495 | arb_primer.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 496 | arb_primer.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 497 | arb_primer.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 498 | arb_primer.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 499 | arb_primer.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 500 | arb_primer.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 501 | arb_primer.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 502 | arb_primer.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 503 | arb_primer.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 504 | arb_primer.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[2206] | 505 | |
---|
[5238] | 506 | arb_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
[6750] | 507 | arb_probe.o: $(ARBHOME)/INCLUDE/aisc_global.h |
---|
[5238] | 508 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 509 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 510 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
[11060] | 511 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
[6318] | 512 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 513 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 514 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[8959] | 515 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
[7314] | 516 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
[7183] | 517 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 518 | arb_probe.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 519 | arb_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[6318] | 520 | arb_probe.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 521 | arb_probe.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[6750] | 522 | arb_probe.o: $(ARBHOME)/INCLUDE/bytestring.h |
---|
[5238] | 523 | arb_probe.o: $(ARBHOME)/INCLUDE/client.h |
---|
[6703] | 524 | arb_probe.o: $(ARBHOME)/INCLUDE/client_types.h |
---|
[9521] | 525 | arb_probe.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[6331] | 526 | arb_probe.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 527 | arb_probe.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[5604] | 528 | arb_probe.o: $(ARBHOME)/INCLUDE/PT_com.h |
---|
[11060] | 529 | arb_probe.o: $(ARBHOME)/INCLUDE/RegExpr.hxx |
---|
[5238] | 530 | arb_probe.o: $(ARBHOME)/INCLUDE/servercntrl.h |
---|
[6318] | 531 | arb_probe.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[6817] | 532 | arb_probe.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[6708] | 533 | arb_probe.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
[2338] | 534 | |
---|
[13191] | 535 | arb_probe_match.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 536 | arb_probe_match.o: $(ARBHOME)/INCLUDE/aisc_global.h |
---|
| 537 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 538 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 539 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 540 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[13191] | 541 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 542 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 543 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 544 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 545 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 546 | arb_probe_match.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 547 | arb_probe_match.o: $(ARBHOME)/INCLUDE/bytestring.h |
---|
| 548 | arb_probe_match.o: $(ARBHOME)/INCLUDE/client.h |
---|
| 549 | arb_probe_match.o: $(ARBHOME)/INCLUDE/client_types.h |
---|
| 550 | arb_probe_match.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 551 | arb_probe_match.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 552 | arb_probe_match.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 553 | arb_probe_match.o: $(ARBHOME)/INCLUDE/PT_com.h |
---|
| 554 | arb_probe_match.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 555 | arb_probe_match.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 556 | |
---|
[5238] | 557 | arb_read_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 558 | arb_read_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 559 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 560 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[7189] | 561 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
[6318] | 562 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[15176] | 563 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 564 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[7314] | 565 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
[7183] | 566 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 567 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 568 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[5238] | 569 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 570 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 571 | arb_read_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 572 | arb_read_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 573 | arb_read_tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 574 | arb_read_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 575 | arb_read_tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 576 | arb_read_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 577 | arb_read_tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 578 | arb_read_tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 579 | arb_read_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[13625] | 580 | arb_read_tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
[6023] | 581 | arb_read_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
[2338] | 582 | |
---|
[5238] | 583 | arb_replace.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 584 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 585 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[6318] | 586 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[8103] | 587 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
[15176] | 588 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 589 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[7314] | 590 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
[7183] | 591 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5238] | 592 | arb_replace.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
[5709] | 593 | arb_replace.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[6318] | 594 | arb_replace.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5238] | 595 | arb_replace.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 596 | arb_replace.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[6331] | 597 | arb_replace.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 598 | arb_replace.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 599 | arb_replace.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[6817] | 600 | arb_replace.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[2338] | 601 | |
---|
[16919] | 602 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 603 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 604 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 605 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 606 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 607 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
| 608 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 609 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 610 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 611 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 612 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 613 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 614 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 615 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 616 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
| 617 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 618 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 619 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 620 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 621 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[16919] | 622 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
| 623 | |
---|
[5872] | 624 | arb_test.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
[7189] | 625 | arb_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
[5872] | 626 | arb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 627 | arb_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[7189] | 628 | arb_test.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
[10704] | 629 | arb_test.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
[6318] | 630 | arb_test.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
[8103] | 631 | arb_test.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
[15176] | 632 | arb_test.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
[7183] | 633 | arb_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
[10083] | 634 | arb_test.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
[16043] | 635 | arb_test.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
| 636 | arb_test.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
[7183] | 637 | arb_test.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
[5872] | 638 | arb_test.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 639 | arb_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
[7189] | 640 | arb_test.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
[6318] | 641 | arb_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5872] | 642 | arb_test.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9451] | 643 | arb_test.o: $(ARBHOME)/INCLUDE/command_output.h |
---|
[9521] | 644 | arb_test.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[10563] | 645 | arb_test.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
[6331] | 646 | arb_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 647 | arb_test.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6318] | 648 | arb_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
[10563] | 649 | arb_test.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 650 | arb_test.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[6817] | 651 | arb_test.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
[16043] | 652 | arb_test.o: $(ARBHOME)/INCLUDE/test_runtool.h |
---|
[7189] | 653 | arb_test.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
[7202] | 654 | arb_test.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h |
---|
[15425] | 655 | |
---|
| 656 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
| 657 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
| 658 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
| 659 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
| 660 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
| 661 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
| 662 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
| 663 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
| 664 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
| 665 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
| 666 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
| 667 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
| 668 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
| 669 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
| 670 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
| 671 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
| 672 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
| 673 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
| 674 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
[18959] | 675 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
[15425] | 676 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/test_global.h |
---|