| 1 | .SUFFIXES: .c .cxx .depend .o |
|---|
| 2 | |
|---|
| 3 | TOOLS := \ |
|---|
| 4 | arb_2_ascii \ |
|---|
| 5 | arb_2_bin \ |
|---|
| 6 | arb_a2ps \ |
|---|
| 7 | arb_dnarates \ |
|---|
| 8 | arb_export_rates \ |
|---|
| 9 | arb_export_tree \ |
|---|
| 10 | arb_gene_probe \ |
|---|
| 11 | arb_message \ |
|---|
| 12 | arb_notify \ |
|---|
| 13 | arb_primer \ |
|---|
| 14 | arb_probe \ |
|---|
| 15 | arb_read_tree \ |
|---|
| 16 | arb_replace \ |
|---|
| 17 | |
|---|
| 18 | ifeq ($(DEBUG),1) |
|---|
| 19 | # add all arb*test*.c[xx] files |
|---|
| 20 | TOOLS += $(subst .c,,$(wildcard arb*test*.c)) |
|---|
| 21 | TOOLS += $(subst .cxx,,$(wildcard arb*test*.cxx)) |
|---|
| 22 | else |
|---|
| 23 | ifeq ($(UNIT_TESTS),1) |
|---|
| 24 | TOOLS += arb_test |
|---|
| 25 | endif |
|---|
| 26 | endif |
|---|
| 27 | |
|---|
| 28 | LIB_ARBDB := $(LIBPATH) $(ARBDB_LIB) |
|---|
| 29 | LIBS_ARB_PROBE := ../SERVERCNTRL/SERVERCNTRL.a ../PROBE_COM/client.a |
|---|
| 30 | LIBS_ARB_READ_TREE := ../SL/TREE_READ/TREE_READ.a |
|---|
| 31 | LIBS_ARB_EXPORT_TREE := ../SL/TREE_WRITE/TREE_WRITE.a ../XML/XML.a $(LIBS_ARB_READ_TREE) |
|---|
| 32 | |
|---|
| 33 | OBJECTS:=$(addsuffix .o,$(TOOLS)) |
|---|
| 34 | BINARIES:=$(addprefix $(ARBHOME)/bin/,$(TOOLS)) |
|---|
| 35 | |
|---|
| 36 | all: $(BINARIES) |
|---|
| 37 | |
|---|
| 38 | %.o: %.cxx |
|---|
| 39 | $(CPP) $(cflags) -c $< $(CPPINCLUDES) $(POST_COMPILE) |
|---|
| 40 | |
|---|
| 41 | %.o: %.c |
|---|
| 42 | $(ACC) $(cflags) -c $< $(CPPINCLUDES) $(POST_COMPILE) |
|---|
| 43 | |
|---|
| 44 | $(ARBHOME)/bin/arb_probe: arb_probe.o $(LIBS_ARB_PROBE) |
|---|
| 45 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_PROBE) $(LIB_ARBDB) $(EXECLIBS) |
|---|
| 46 | |
|---|
| 47 | $(ARBHOME)/bin/arb_read_tree: arb_read_tree.o $(LIBS_ARB_READ_TREE) |
|---|
| 48 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_READ_TREE) $(LIB_ARBDB) $(EXECLIBS) |
|---|
| 49 | |
|---|
| 50 | $(ARBHOME)/bin/arb_export_tree: arb_export_tree.o $(LIBS_ARB_EXPORT_TREE) |
|---|
| 51 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_TREE) $(LIB_ARBDB) $(EXECLIBS) |
|---|
| 52 | |
|---|
| 53 | $(ARBHOME)/bin/arb_a2ps: arb_a2ps.o |
|---|
| 54 | $(LINK_EXECUTABLE) $@ $(use_ARB_main_C) $< $(LIB_ARBDB) $(EXECLIBS) |
|---|
| 55 | # $(LINK_EXECUTABLE) $@ $< $(LIB_ARBDB) $(EXECLIBS) |
|---|
| 56 | |
|---|
| 57 | $(ARBHOME)/bin/%: %.o |
|---|
| 58 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIB_ARBDB) $(EXECLIBS) |
|---|
| 59 | |
|---|
| 60 | clean: |
|---|
| 61 | rm -f $(BINARIES) |
|---|
| 62 | rm -f $(OBJECTS) |
|---|
| 63 | |
|---|
| 64 | proto: |
|---|
| 65 | @echo "Nothing todo for proto in TOOLS" |
|---|
| 66 | |
|---|
| 67 | depends: |
|---|
| 68 | $(MAKE) "DEBUG=1" depends_debug |
|---|
| 69 | |
|---|
| 70 | DEPENDS = $(OBJECTS:.o=.depend) |
|---|
| 71 | depends_debug: $(DEPENDS) |
|---|
| 72 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
|---|
| 73 | @rm $(DEPENDS) |
|---|
| 74 | $(DEPENDS): depend.init |
|---|
| 75 | depend.init: |
|---|
| 76 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
|---|
| 77 | .cxx.depend: |
|---|
| 78 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 79 | .c.depend: |
|---|
| 80 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 81 | |
|---|
| 82 | # DO NOT DELETE |
|---|
| 83 | |
|---|
| 84 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
|---|
| 85 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl |
|---|
| 86 | |
|---|
| 87 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 88 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 89 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 90 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 91 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
|---|
| 92 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 93 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 94 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 95 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 96 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 97 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 98 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 99 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 100 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 101 | |
|---|
| 102 | arb_2_bin.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 103 | arb_2_bin.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 104 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 105 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 106 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 107 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 108 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 109 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 110 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 111 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 112 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 113 | arb_2_bin.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 114 | arb_2_bin.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 115 | arb_2_bin.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 116 | arb_2_bin.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 117 | |
|---|
| 118 | arb_dnarates.o: DNAml_rates_1_0.h |
|---|
| 119 | arb_dnarates.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 120 | arb_dnarates.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 121 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 122 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 123 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 124 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 125 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 126 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 127 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 128 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 129 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 130 | arb_dnarates.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 131 | arb_dnarates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
|---|
| 132 | arb_dnarates.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 133 | arb_dnarates.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 134 | arb_dnarates.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 135 | |
|---|
| 136 | arb_export_rates.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 137 | arb_export_rates.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 138 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 139 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 140 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 141 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 142 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 143 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 144 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 145 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 146 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 147 | arb_export_rates.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 148 | arb_export_rates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
|---|
| 149 | arb_export_rates.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 150 | arb_export_rates.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 151 | arb_export_rates.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 152 | |
|---|
| 153 | arb_export_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 154 | arb_export_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 155 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 156 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 157 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 158 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
|---|
| 159 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 160 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 161 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 162 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 163 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 164 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 165 | arb_export_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 166 | arb_export_tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
|---|
| 167 | arb_export_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 168 | arb_export_tree.o: $(ARBHOME)/INCLUDE/nds.h |
|---|
| 169 | arb_export_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 170 | arb_export_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 171 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
|---|
| 172 | |
|---|
| 173 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 174 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 175 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/adGene.h |
|---|
| 176 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 177 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 178 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 179 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 180 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 181 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 182 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 183 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 184 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 185 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 186 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 187 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 188 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 189 | |
|---|
| 190 | arb_message.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 191 | arb_message.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 192 | arb_message.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 193 | arb_message.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 194 | arb_message.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 195 | arb_message.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 196 | arb_message.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 197 | arb_message.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 198 | arb_message.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 199 | arb_message.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 200 | arb_message.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 201 | arb_message.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 202 | arb_message.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 203 | arb_message.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 204 | arb_message.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 205 | |
|---|
| 206 | arb_notify.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 207 | arb_notify.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 208 | arb_notify.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 209 | arb_notify.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 210 | arb_notify.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 211 | arb_notify.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 212 | arb_notify.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 213 | arb_notify.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 214 | arb_notify.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 215 | arb_notify.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 216 | arb_notify.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 217 | arb_notify.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 218 | arb_notify.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 219 | arb_notify.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 220 | arb_notify.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 221 | |
|---|
| 222 | arb_perf_test.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 223 | arb_perf_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 224 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 225 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 226 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 227 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 228 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 229 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 230 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 231 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 232 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 233 | arb_perf_test.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 234 | arb_perf_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 235 | arb_perf_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 236 | arb_perf_test.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 237 | |
|---|
| 238 | arb_primer.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 239 | arb_primer.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 240 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 241 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 242 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 243 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 244 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
|---|
| 245 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 246 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 247 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 248 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 249 | arb_primer.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 250 | arb_primer.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 251 | arb_primer.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 252 | arb_primer.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 253 | arb_primer.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 254 | |
|---|
| 255 | arb_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 256 | arb_probe.o: $(ARBHOME)/INCLUDE/aisc_global.h |
|---|
| 257 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 258 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 259 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 260 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 261 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 262 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
|---|
| 263 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 264 | arb_probe.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 265 | arb_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 266 | arb_probe.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 267 | arb_probe.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 268 | arb_probe.o: $(ARBHOME)/INCLUDE/bytestring.h |
|---|
| 269 | arb_probe.o: $(ARBHOME)/INCLUDE/client.h |
|---|
| 270 | arb_probe.o: $(ARBHOME)/INCLUDE/client_types.h |
|---|
| 271 | arb_probe.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 272 | arb_probe.o: $(ARBHOME)/INCLUDE/PT_com.h |
|---|
| 273 | arb_probe.o: $(ARBHOME)/INCLUDE/servercntrl.h |
|---|
| 274 | arb_probe.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 275 | arb_probe.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 276 | arb_probe.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 277 | |
|---|
| 278 | arb_read_tree.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 279 | arb_read_tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 280 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 281 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 282 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 283 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 284 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 285 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
|---|
| 286 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 287 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 288 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 289 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 290 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 291 | arb_read_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 292 | arb_read_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 293 | arb_read_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 294 | arb_read_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 295 | arb_read_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h |
|---|
| 296 | |
|---|
| 297 | arb_replace.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 298 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 299 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 300 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 301 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_file.h |
|---|
| 302 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 303 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
|---|
| 304 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 305 | arb_replace.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 306 | arb_replace.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 307 | arb_replace.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 308 | arb_replace.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 309 | arb_replace.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 310 | arb_replace.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 311 | arb_replace.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 312 | |
|---|
| 313 | arb_test.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 314 | arb_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 315 | arb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 316 | arb_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 317 | arb_test.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 318 | arb_test.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 319 | arb_test.o: $(ARBHOME)/INCLUDE/arb_file.h |
|---|
| 320 | arb_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 321 | arb_test.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 322 | arb_test.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 323 | arb_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 324 | arb_test.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 325 | arb_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 326 | arb_test.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 327 | arb_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 328 | arb_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 329 | arb_test.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 330 | arb_test.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 331 | arb_test.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h |
|---|