1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
|
.SUFFIXES: .c .cxx .depend .o
TOOLS := \
arb_2_ascii \
arb_2_bin \
arb_a2ps \
arb_consensus_tree \
arb_dnarates \
arb_export_rates \
arb_export_tree \
arb_gene_probe \
arb_message \
arb_notify \
arb_primer \
arb_probe \
arb_read_tree \
arb_replace \
arb_flush_mem \
ifeq ($(DEBUG),1)
# add all arb*test*.c[xx] files
TOOLS += $(subst .c,,$(wildcard arb*test*.c))
TOOLS += $(subst .cxx,,$(wildcard arb*test*.cxx))
else
ifeq ($(UNIT_TESTS),1)
TOOLS += arb_test
endif
endif
# ------------------------------------------------------------
# if you change lib-dependencies here,
# please update corresponding definitions in ../BINDEP/
LIB_ARBDB := $(LIBPATH) $(ARBDB_LIB) $(ARB_GLIB_LIBS)
LIBS_ARB_PROBE := ../SERVERCNTRL/SERVERCNTRL.a ../PROBE_COM/client.a ../PROBE_COM/common.a ../SL/REGEXPR/REGEXPR.a
LIBS_ARB_READ_TREE := ../SL/TREE_READ/TREE_READ.a
LIBS_ARB_EXPORT_TREE := ../SL/TREE_WRITE/TREE_WRITE.a ../XML/XML.a $(LIBS_ARB_READ_TREE)
LIBS_ARB_CONSENSUS_TREE := $(LIBS_ARB_EXPORT_TREE) ../CONSENSUS_TREE/CONSENSUS_TREE.a ../SL/ROOTED_TREE/ROOTED_TREE.a
OBJECTS:=$(addsuffix .o,$(TOOLS))
BINARIES:=$(addprefix $(ARBHOME)/bin/,$(TOOLS))
all: $(BINARIES)
%.o: %.cxx
$(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE)
%.o: %.c
$(A_CC) $(cflags) -c $< $(CC_INCLUDES) $(POST_COMPILE)
$(ARBHOME)/bin/arb_probe: arb_probe.o $(LIBS_ARB_PROBE) $(use_ARB_main)
$(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_PROBE) $(LIB_ARBDB) $(EXECLIBS)
$(ARBHOME)/bin/arb_read_tree: arb_read_tree.o $(LIBS_ARB_READ_TREE)
$(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_READ_TREE) $(LIB_ARBDB) $(EXECLIBS)
$(ARBHOME)/bin/arb_export_tree: arb_export_tree.o $(LIBS_ARB_EXPORT_TREE)
$(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_TREE) $(LIB_ARBDB) $(EXECLIBS)
$(ARBHOME)/bin/arb_consensus_tree: arb_consensus_tree.o $(LIBS_ARB_CONSENSUS_TREE) $(use_ARB_main)
$(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_CONSENSUS_TREE) $(LIB_ARBDB) $(EXECLIBS)
$(ARBHOME)/bin/arb_a2ps: arb_a2ps.o $(use_ARB_main_C)
$(LINK_EXECUTABLE) $@ $(use_ARB_main_C) $< $(LIB_ARBDB) $(EXECLIBS)
$(ARBHOME)/bin/%: %.o $(use_ARB_main)
$(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIB_ARBDB) $(EXECLIBS)
clean:
rm -f $(BINARIES)
rm -f $(OBJECTS)
proto:
@echo "Nothing todo for proto in TOOLS"
depends:
$(MAKE) "DEBUG=1" depends_debug
DEPENDS = $(OBJECTS:.o=.depend)
depends_debug: $(DEPENDS)
@cat $(DEPENDS) | grep -v '^#' >>Makefile
@rm $(DEPENDS)
$(DEPENDS): depend.init
depend.init:
$(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
.cxx.depend:
$(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
.c.depend:
$(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
# DO NOT DELETE
# Do not add dependencies manually - use 'make depend' in $ARBHOME
# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
arb_2_ascii.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_handlers.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/attributes.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/gccver.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_2_ascii.o: $(ARBHOME)/INCLUDE/test_global.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/attributes.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/downcast.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/gccver.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_2_bin.o: $(ARBHOME)/INCLUDE/test_global.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_diff.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_file.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_progress.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_str.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/attributes.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/command_output.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/downcast.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/gccver.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/nds.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/RootedTree.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/test_global.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/test_unit.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h
arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h
arb_dnarates.o: DNAml_rates_1_0.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/attributes.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
arb_dnarates.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/downcast.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/gccver.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_dnarates.o: $(ARBHOME)/INCLUDE/test_global.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/attributes.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
arb_export_rates.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/downcast.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/gccver.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_export_rates.o: $(ARBHOME)/INCLUDE/test_global.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_handlers.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/attributes.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx
arb_export_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/downcast.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/gccver.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/nds.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/test_global.h
arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_misc.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_progress.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/attributes.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/gccver.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_flush_mem.o: $(ARBHOME)/INCLUDE/test_global.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/adGene.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/attributes.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/downcast.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/gccver.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_gene_probe.o: $(ARBHOME)/INCLUDE/test_global.h
arb_message.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_message.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_message.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_message.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_message.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_message.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_message.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_message.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_message.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_message.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_message.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_message.o: $(ARBHOME)/INCLUDE/attributes.h
arb_message.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_message.o: $(ARBHOME)/INCLUDE/downcast.h
arb_message.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_message.o: $(ARBHOME)/INCLUDE/gccver.h
arb_message.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_message.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_message.o: $(ARBHOME)/INCLUDE/test_global.h
arb_notify.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_notify.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_notify.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_notify.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_notify.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_notify.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_notify.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_notify.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_notify.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_notify.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_notify.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_notify.o: $(ARBHOME)/INCLUDE/attributes.h
arb_notify.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_notify.o: $(ARBHOME)/INCLUDE/downcast.h
arb_notify.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_notify.o: $(ARBHOME)/INCLUDE/gccver.h
arb_notify.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_notify.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_notify.o: $(ARBHOME)/INCLUDE/test_global.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/attributes.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/downcast.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/gccver.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_perf_test.o: $(ARBHOME)/INCLUDE/test_global.h
arb_primer.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_primer.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_primer.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_primer.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_primer.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_primer.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_primer.o: $(ARBHOME)/INCLUDE/arb_strarray.h
arb_primer.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_primer.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_primer.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_primer.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_primer.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_primer.o: $(ARBHOME)/INCLUDE/attributes.h
arb_primer.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_primer.o: $(ARBHOME)/INCLUDE/downcast.h
arb_primer.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_primer.o: $(ARBHOME)/INCLUDE/gccver.h
arb_primer.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_primer.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_primer.o: $(ARBHOME)/INCLUDE/test_global.h
arb_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_probe.o: $(ARBHOME)/INCLUDE/aisc_global.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_defs.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_diff.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_strarray.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
arb_probe.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_probe.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_probe.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_probe.o: $(ARBHOME)/INCLUDE/attributes.h
arb_probe.o: $(ARBHOME)/INCLUDE/bytestring.h
arb_probe.o: $(ARBHOME)/INCLUDE/client.h
arb_probe.o: $(ARBHOME)/INCLUDE/client_types.h
arb_probe.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_probe.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_probe.o: $(ARBHOME)/INCLUDE/gccver.h
arb_probe.o: $(ARBHOME)/INCLUDE/PT_com.h
arb_probe.o: $(ARBHOME)/INCLUDE/RegExpr.hxx
arb_probe.o: $(ARBHOME)/INCLUDE/servercntrl.h
arb_probe.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_probe.o: $(ARBHOME)/INCLUDE/test_global.h
arb_probe.o: $(ARBHOME)/INCLUDE/test_unit.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/attributes.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/downcast.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/gccver.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/test_global.h
arb_read_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h
arb_replace.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_file.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
arb_replace.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_replace.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_replace.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_replace.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_replace.o: $(ARBHOME)/INCLUDE/attributes.h
arb_replace.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_replace.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_replace.o: $(ARBHOME)/INCLUDE/gccver.h
arb_replace.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_replace.o: $(ARBHOME)/INCLUDE/test_global.h
arb_test.o: $(ARBHOME)/INCLUDE/ad_prot.h
arb_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_core.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_defs.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_diff.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_error.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_file.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_msg.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_sleep.h
arb_test.o: $(ARBHOME)/INCLUDE/arb_string.h
arb_test.o: $(ARBHOME)/INCLUDE/arbdb.h
arb_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h
arb_test.o: $(ARBHOME)/INCLUDE/arbdbt.h
arb_test.o: $(ARBHOME)/INCLUDE/arbtools.h
arb_test.o: $(ARBHOME)/INCLUDE/attributes.h
arb_test.o: $(ARBHOME)/INCLUDE/command_output.h
arb_test.o: $(ARBHOME)/INCLUDE/cxxforward.h
arb_test.o: $(ARBHOME)/INCLUDE/downcast.h
arb_test.o: $(ARBHOME)/INCLUDE/dupstr.h
arb_test.o: $(ARBHOME)/INCLUDE/gccver.h
arb_test.o: $(ARBHOME)/INCLUDE/smartptr.h
arb_test.o: $(ARBHOME)/INCLUDE/static_assert.h
arb_test.o: $(ARBHOME)/INCLUDE/test_global.h
arb_test.o: $(ARBHOME)/INCLUDE/test_unit.h
arb_test.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h
|