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
|
.SUFFIXES: .o .cxx .depend
OBJECTS = $(subst .cxx,.o,$(wildcard *.cxx))
$(MAIN): $(OBJECTS)
$(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
.cxx.o:
$(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE)
proto:
../AISC_MKPTPS/aisc_mkpt -P -G -E -w pt_prototypes.h $(OBJECTS:.o=.cxx) probe_tree.h >pt_prototypes.h.tmp
../SOURCE_TOOLS/mv_if_diff pt_prototypes.h.tmp pt_prototypes.h
clean:
rm -f $(OBJECTS) *.a
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)
PT_buildtree.o: probe.h
PT_buildtree.o: probe_tree.h
PT_buildtree.o: PT_compress.h
PT_buildtree.o: PT_partition.h
PT_buildtree.o: PT_prefixIter.h
PT_buildtree.o: pt_prototypes.h
PT_buildtree.o: PT_tools.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_defs.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_diff.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_file.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_misc.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_progress.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/attributes.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/cache.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/gccver.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/test_global.h
PT_buildtree.o: $(ARBHOME)/INCLUDE/test_unit.h
PT_debug.o: probe.h
PT_debug.o: probe_tree.h
PT_debug.o: pt_prototypes.h
PT_debug.o: PT_tools.h
PT_debug.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_debug.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_file.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_misc.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_debug.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_debug.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_debug.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_debug.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_debug.o: $(ARBHOME)/INCLUDE/attributes.h
PT_debug.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_debug.o: $(ARBHOME)/INCLUDE/cache.h
PT_debug.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_debug.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_debug.o: $(ARBHOME)/INCLUDE/gccver.h
PT_debug.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_debug.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_debug.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_debug.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_debug.o: $(ARBHOME)/INCLUDE/test_global.h
PT_etc.o: probe.h
PT_etc.o: pt_prototypes.h
PT_etc.o: PT_tools.h
PT_etc.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_etc.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_etc.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_etc.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_etc.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_etc.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_etc.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
PT_etc.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_etc.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_etc.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_etc.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_etc.o: $(ARBHOME)/INCLUDE/attributes.h
PT_etc.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_etc.o: $(ARBHOME)/INCLUDE/cache.h
PT_etc.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_etc.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_etc.o: $(ARBHOME)/INCLUDE/gccver.h
PT_etc.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_etc.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_etc.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_etc.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_etc.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_etc.o: $(ARBHOME)/INCLUDE/struct_man.h
PT_etc.o: $(ARBHOME)/INCLUDE/test_global.h
PT_family.o: probe.h
PT_family.o: probe_tree.h
PT_family.o: PT_complement.h
PT_family.o: PT_global_defs.h
PT_family.o: pt_prototypes.h
PT_family.o: PT_rangeCheck.h
PT_family.o: PT_tools.h
PT_family.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_family.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
PT_family.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_family.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_family.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_family.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_family.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_family.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_family.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_family.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_family.o: $(ARBHOME)/INCLUDE/arbdbt.h
PT_family.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_family.o: $(ARBHOME)/INCLUDE/attributes.h
PT_family.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_family.o: $(ARBHOME)/INCLUDE/cache.h
PT_family.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_family.o: $(ARBHOME)/INCLUDE/downcast.h
PT_family.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_family.o: $(ARBHOME)/INCLUDE/gccver.h
PT_family.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_family.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_family.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_family.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_family.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_family.o: $(ARBHOME)/INCLUDE/struct_man.h
PT_family.o: $(ARBHOME)/INCLUDE/test_global.h
PT_findEx.o: probe.h
PT_findEx.o: probe_tree.h
PT_findEx.o: pt_prototypes.h
PT_findEx.o: PT_tools.h
PT_findEx.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_findEx.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_findEx.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_findEx.o: $(ARBHOME)/INCLUDE/attributes.h
PT_findEx.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_findEx.o: $(ARBHOME)/INCLUDE/cache.h
PT_findEx.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_findEx.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_findEx.o: $(ARBHOME)/INCLUDE/gccver.h
PT_findEx.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_findEx.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_findEx.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_findEx.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_findEx.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_findEx.o: $(ARBHOME)/INCLUDE/test_global.h
PT_io.o: probe.h
PT_io.o: PT_compress.h
PT_io.o: pt_prototypes.h
PT_io.o: PT_tools.h
PT_io.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_io.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
PT_io.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_file.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_progress.h
PT_io.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_io.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_io.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_io.o: $(ARBHOME)/INCLUDE/arbdbt.h
PT_io.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_io.o: $(ARBHOME)/INCLUDE/attributes.h
PT_io.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
PT_io.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_io.o: $(ARBHOME)/INCLUDE/cache.h
PT_io.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_io.o: $(ARBHOME)/INCLUDE/downcast.h
PT_io.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_io.o: $(ARBHOME)/INCLUDE/gccver.h
PT_io.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_io.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_io.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_io.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_io.o: $(ARBHOME)/INCLUDE/test_global.h
PT_io.o: $(ARBHOME)/INCLUDE/test_unit.h
PT_main.o: probe.h
PT_main.o: PT_mem.h
PT_main.o: pt_prototypes.h
PT_main.o: PT_tools.h
PT_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
PT_main.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
PT_main.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_defs.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_file.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_misc.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_sleep.h
PT_main.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_main.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_main.o: $(ARBHOME)/INCLUDE/arbdbt.h
PT_main.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_main.o: $(ARBHOME)/INCLUDE/attributes.h
PT_main.o: $(ARBHOME)/INCLUDE/BI_basepos.hxx
PT_main.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_main.o: $(ARBHOME)/INCLUDE/cache.h
PT_main.o: $(ARBHOME)/INCLUDE/client.h
PT_main.o: $(ARBHOME)/INCLUDE/client_types.h
PT_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_main.o: $(ARBHOME)/INCLUDE/downcast.h
PT_main.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_main.o: $(ARBHOME)/INCLUDE/gccver.h
PT_main.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_main.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_main.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_main.o: $(ARBHOME)/INCLUDE/ptclean.h
PT_main.o: $(ARBHOME)/INCLUDE/server.h
PT_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
PT_main.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_main.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_main.o: $(ARBHOME)/INCLUDE/struct_man.h
PT_main.o: $(ARBHOME)/INCLUDE/test_global.h
PT_main.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h
PT_match.o: probe.h
PT_match.o: probe_tree.h
PT_match.o: PT_complement.h
PT_match.o: pt_prototypes.h
PT_match.o: pt_split.h
PT_match.o: PT_tools.h
PT_match.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_match.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_defs.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_sort.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
PT_match.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_match.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_match.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_match.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_match.o: $(ARBHOME)/INCLUDE/attributes.h
PT_match.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_match.o: $(ARBHOME)/INCLUDE/cache.h
PT_match.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_match.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_match.o: $(ARBHOME)/INCLUDE/gccver.h
PT_match.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_match.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_match.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_match.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_match.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_match.o: $(ARBHOME)/INCLUDE/struct_man.h
PT_match.o: $(ARBHOME)/INCLUDE/test_global.h
PT_match.o: $(ARBHOME)/INCLUDE/test_unit.h
PT_new_design.o: probe.h
PT_new_design.o: probe_tree.h
PT_new_design.o: PT_complement.h
PT_new_design.o: PT_prefixIter.h
PT_new_design.o: pt_prototypes.h
PT_new_design.o: pt_split.h
PT_new_design.o: PT_tools.h
PT_new_design.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_new_design.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_defs.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_progress.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_sort.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_str.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_strarray.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_strbuf.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_new_design.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_new_design.o: $(ARBHOME)/INCLUDE/attributes.h
PT_new_design.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_new_design.o: $(ARBHOME)/INCLUDE/cache.h
PT_new_design.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_new_design.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_new_design.o: $(ARBHOME)/INCLUDE/gccver.h
PT_new_design.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_new_design.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_new_design.o: $(ARBHOME)/INCLUDE/PT_server_prototypes.h
PT_new_design.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_new_design.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_new_design.o: $(ARBHOME)/INCLUDE/struct_man.h
PT_new_design.o: $(ARBHOME)/INCLUDE/test_global.h
PT_new_design.o: $(ARBHOME)/INCLUDE/test_unit.h
PT_prefixtree.o: probe.h
PT_prefixtree.o: probe_tree.h
PT_prefixtree.o: PT_mem.h
PT_prefixtree.o: pt_prototypes.h
PT_prefixtree.o: PT_tools.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_file.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_misc.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/attributes.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/cache.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/gccver.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/test_global.h
PT_prefixtree.o: $(ARBHOME)/INCLUDE/test_unit.h
PT_rangeCheck.o: probe.h
PT_rangeCheck.o: probe_tree.h
PT_rangeCheck.o: pt_prototypes.h
PT_rangeCheck.o: PT_rangeCheck.h
PT_rangeCheck.o: PT_tools.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/ad_prot.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/aisc_global.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arb_assert.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arb_core.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arb_error.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arb_msg.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arb_string.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arbdb.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arbdb_base.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/arbtools.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/attributes.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/bytestring.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/cache.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/cxxforward.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/dupstr.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/gccver.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/PT_com.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/PT_server.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/smartptr.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/static_assert.h
PT_rangeCheck.o: $(ARBHOME)/INCLUDE/test_global.h
|