1 | .SUFFIXES: .c .cxx .depend .o |
---|
2 | |
---|
3 | TOOLS := \ |
---|
4 | arb_2_ascii \ |
---|
5 | arb_2_bin \ |
---|
6 | arb_a2ps \ |
---|
7 | arb_calc_pvp \ |
---|
8 | arb_consensus_tree \ |
---|
9 | arb_dnarates \ |
---|
10 | arb_export_newick \ |
---|
11 | arb_export_rates \ |
---|
12 | arb_export_sequences \ |
---|
13 | arb_export_seq_filtered \ |
---|
14 | arb_export_tree \ |
---|
15 | arb_flush_mem \ |
---|
16 | arb_gene_probe \ |
---|
17 | arb_message \ |
---|
18 | arb_primer \ |
---|
19 | arb_probe \ |
---|
20 | arb_probe_match \ |
---|
21 | arb_read_tree \ |
---|
22 | arb_write_tree_comment \ |
---|
23 | arb_replace \ |
---|
24 | |
---|
25 | ifeq ($(DEBUG),1) |
---|
26 | TOOLS += arb_test arb_perf_test |
---|
27 | else |
---|
28 | ifeq ($(UNIT_TESTS),1) |
---|
29 | # DEBUG!=1 && UNIT_TESTS=1 |
---|
30 | TOOLS += arb_test |
---|
31 | endif |
---|
32 | endif |
---|
33 | |
---|
34 | ifeq ($(UNIT_TESTS),1) |
---|
35 | TOOLS += arb_sub2ascii |
---|
36 | endif |
---|
37 | |
---|
38 | # Note: you can define explicit test-dependencies for tools tested via 'arb_test' |
---|
39 | # see ../UNIT_TESTER/Makefile.test@EXTRA_TEST_DEPENDENCIES |
---|
40 | |
---|
41 | |
---|
42 | # ------------------------------------------------------------ |
---|
43 | # if you change lib-dependencies here, |
---|
44 | # please update corresponding definitions in ../BINDEP/ |
---|
45 | # and in ../Makefile@TOOLSLIBDEPENDS |
---|
46 | |
---|
47 | LIB_ARBDB := $(LIBPATH) $(ARBDB_LIB) $(ARB_CORE_LIBS) |
---|
48 | LIBS_ARB_PROBE := ../SERVERCNTRL/SERVERCNTRL.a ../PROBE_COM/client.a ../SL/REGEXPR/REGEXPR.a |
---|
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) |
---|
51 | LIBS_ARB_EXPORT_SEQ := ../SL/SEQIO/SEQIO.a ../SL/XFERSET/XFERSET.a ../XML/XML.a ../SL/INSDEL/INSDEL.a ../SL/FILTER/FILTER.a |
---|
52 | LIBS_ARB_EXPORT_SEQ_FILT:= ../SL/FILTSEQEXP/FILTSEQEXP.a ../SL/FILTER/FILTER.a |
---|
53 | LIBS_ARB_CALC_PVP := $(LIBS_ARB_READ_TREE) ../SL/PVP/PVP.a ../SL/PRONUC/PRONUC.a |
---|
54 | LIBS_ARB_CONSENSUS_TREE := $(LIBS_ARB_EXPORT_TREE) ../CONSENSUS_TREE/CONSENSUS_TREE.a |
---|
55 | |
---|
56 | OBJECTS:=$(addsuffix .o,$(TOOLS)) |
---|
57 | BINARIES:=$(addprefix $(ARBHOME)/bin/,$(TOOLS)) |
---|
58 | |
---|
59 | all: $(BINARIES) |
---|
60 | |
---|
61 | %.o: %.cxx |
---|
62 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
63 | |
---|
64 | %.o: %.c |
---|
65 | $(A_CC) $(cflags) $(onlyC_flags) -c $< $(CC_INCLUDES) $(POST_COMPILE) $< |
---|
66 | |
---|
67 | $(ARBHOME)/bin/arb_probe: arb_probe.o $(LIBS_ARB_PROBE) $(use_ARB_main) |
---|
68 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_PROBE) $(LIB_ARBDB) |
---|
69 | |
---|
70 | $(ARBHOME)/bin/arb_probe_match: arb_probe_match.o $(LIBS_ARB_PROBE) $(use_ARB_main) |
---|
71 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_PROBE) $(LIB_ARBDB) |
---|
72 | |
---|
73 | $(ARBHOME)/bin/arb_read_tree: arb_read_tree.o $(LIBS_ARB_READ_TREE) |
---|
74 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_READ_TREE) $(LIB_ARBDB) |
---|
75 | |
---|
76 | $(ARBHOME)/bin/arb_write_tree_comment: arb_write_tree_comment.o |
---|
77 | $(LINK_EXECUTABLE) $@ $< $(LIB_ARBDB) |
---|
78 | |
---|
79 | $(ARBHOME)/bin/arb_export_tree: arb_export_tree.o $(LIBS_ARB_EXPORT_TREE) |
---|
80 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_TREE) $(LIB_ARBDB) |
---|
81 | |
---|
82 | $(ARBHOME)/bin/arb_export_newick: arb_export_newick.o $(LIBS_ARB_EXPORT_TREE) |
---|
83 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_TREE) $(LIB_ARBDB) |
---|
84 | |
---|
85 | $(ARBHOME)/bin/arb_export_sequences: arb_export_sequences.o $(LIBS_ARB_EXPORT_SEQ) |
---|
86 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_SEQ) $(LIB_ARBDB) |
---|
87 | |
---|
88 | $(ARBHOME)/bin/arb_export_seq_filtered: arb_export_seq_filtered.o $(LIBS_ARB_EXPORT_SEQ_FILT) |
---|
89 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_EXPORT_SEQ_FILT) $(LIB_ARBDB) |
---|
90 | |
---|
91 | $(ARBHOME)/bin/arb_calc_pvp: arb_calc_pvp.o $(LIBS_ARB_CALC_PVP) |
---|
92 | $(LINK_EXECUTABLE) $@ $< $(LIBS_ARB_CALC_PVP) $(LIB_ARBDB) |
---|
93 | |
---|
94 | $(ARBHOME)/bin/arb_consensus_tree: arb_consensus_tree.o $(LIBS_ARB_CONSENSUS_TREE) $(use_ARB_main) |
---|
95 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIBS_ARB_CONSENSUS_TREE) $(LIB_ARBDB) |
---|
96 | |
---|
97 | $(ARBHOME)/bin/arb_a2ps: arb_a2ps.o $(use_ARB_main_C) |
---|
98 | $(LINK_EXECUTABLE) $@ $(use_ARB_main_C) $< $(LIB_ARBDB) |
---|
99 | |
---|
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 | |
---|
103 | $(ARBHOME)/bin/%: %.o $(use_ARB_main) |
---|
104 | $(LINK_EXECUTABLE) $@ $(use_ARB_main) $< $(LIB_ARBDB) |
---|
105 | |
---|
106 | clean: |
---|
107 | rm -f $(BINARIES) |
---|
108 | rm -f $(OBJECTS) |
---|
109 | |
---|
110 | proto: |
---|
111 | @echo "Nothing todo for proto in TOOLS" |
---|
112 | |
---|
113 | depends: |
---|
114 | $(MAKE) "DEBUG=1" "UNIT_TESTS=1" depends_debug |
---|
115 | |
---|
116 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
117 | depends_debug: $(DEPENDS) |
---|
118 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
119 | @rm $(DEPENDS) |
---|
120 | $(DEPENDS): depend.init |
---|
121 | depend.init: |
---|
122 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
123 | .cxx.depend: |
---|
124 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
125 | .c.depend: |
---|
126 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
127 | |
---|
128 | # DO NOT DELETE |
---|
129 | |
---|
130 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
131 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
---|
132 | |
---|
133 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
134 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
135 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
136 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
137 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
---|
138 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
139 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
140 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
141 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
142 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
143 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
144 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
145 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
146 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
147 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
148 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
149 | arb_2_ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
150 | |
---|
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 |
---|
154 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
155 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
156 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
157 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
158 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
159 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
160 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
161 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
162 | arb_2_bin.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
163 | arb_2_bin.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
164 | arb_2_bin.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
165 | arb_2_bin.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
166 | arb_2_bin.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
167 | arb_2_bin.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
168 | arb_2_bin.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
169 | arb_2_bin.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
170 | arb_2_bin.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
171 | arb_2_bin.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
172 | arb_2_bin.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
173 | arb_2_bin.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
174 | |
---|
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 |
---|
195 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
196 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
197 | arb_calc_pvp.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
198 | |
---|
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 |
---|
203 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
204 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
205 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
206 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
207 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
208 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
209 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
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 |
---|
219 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/command_output.h |
---|
220 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/CT_common.hxx |
---|
221 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx |
---|
222 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
223 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
224 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
225 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
226 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/nds.h |
---|
227 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
228 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
229 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
230 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
231 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
232 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeLabeler.h |
---|
233 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
234 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
235 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
---|
236 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/triangular.h |
---|
237 | arb_consensus_tree.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h |
---|
238 | |
---|
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 |
---|
243 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
244 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
245 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
246 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
247 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
248 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
249 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
250 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
251 | arb_dnarates.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
252 | arb_dnarates.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
253 | arb_dnarates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
254 | arb_dnarates.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
255 | arb_dnarates.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
256 | arb_dnarates.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
257 | arb_dnarates.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
258 | arb_dnarates.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
259 | arb_dnarates.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
260 | arb_dnarates.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
261 | arb_dnarates.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
262 | |
---|
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 |
---|
288 | arb_export_newick.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
289 | arb_export_newick.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
290 | arb_export_newick.o: $(ARBHOME)/INCLUDE/TreeLabeler.h |
---|
291 | arb_export_newick.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
292 | arb_export_newick.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
---|
293 | |
---|
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 |
---|
297 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
298 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
299 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
300 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
301 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
302 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
303 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
304 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
305 | arb_export_rates.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
306 | arb_export_rates.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
307 | arb_export_rates.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx |
---|
308 | arb_export_rates.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
309 | arb_export_rates.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
310 | arb_export_rates.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
311 | arb_export_rates.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
312 | arb_export_rates.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
313 | arb_export_rates.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
314 | arb_export_rates.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
315 | arb_export_rates.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
316 | |
---|
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 |
---|
339 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
340 | arb_export_seq_filtered.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
341 | |
---|
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 |
---|
349 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
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 |
---|
365 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
366 | arb_export_sequences.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
367 | |
---|
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 |
---|
371 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
372 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
373 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
374 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_handlers.h |
---|
375 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
376 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
377 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
378 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
379 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
380 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
381 | arb_export_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
382 | arb_export_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
383 | arb_export_tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
384 | arb_export_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
385 | arb_export_tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
386 | arb_export_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
387 | arb_export_tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
388 | arb_export_tree.o: $(ARBHOME)/INCLUDE/nds.h |
---|
389 | arb_export_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
390 | arb_export_tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
391 | arb_export_tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
392 | arb_export_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
393 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeLabeler.h |
---|
394 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
395 | arb_export_tree.o: $(ARBHOME)/INCLUDE/TreeWrite.h |
---|
396 | |
---|
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 |
---|
401 | arb_flush_mem.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
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 | |
---|
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 |
---|
420 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
421 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
422 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
423 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
424 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
425 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
426 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
427 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
428 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
429 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
430 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
431 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
432 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
433 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
434 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
435 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
436 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
437 | arb_gene_probe.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
438 | |
---|
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 |
---|
442 | arb_message.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
443 | arb_message.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
444 | arb_message.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
445 | arb_message.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
446 | arb_message.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
447 | arb_message.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
448 | arb_message.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
449 | arb_message.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
450 | arb_message.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
451 | arb_message.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
452 | arb_message.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
453 | arb_message.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
454 | arb_message.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
455 | arb_message.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
456 | arb_message.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
457 | arb_message.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
458 | arb_message.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
459 | arb_message.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
460 | |
---|
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 |
---|
464 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
465 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
466 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
467 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
468 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
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 |
---|
472 | arb_perf_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
473 | arb_perf_test.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
474 | arb_perf_test.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
475 | arb_perf_test.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
476 | arb_perf_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
477 | arb_perf_test.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
478 | arb_perf_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
479 | arb_perf_test.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
480 | arb_perf_test.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
481 | arb_perf_test.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
482 | |
---|
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 |
---|
486 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
487 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
488 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
489 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
490 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
491 | arb_primer.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
492 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
493 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
494 | arb_primer.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
495 | arb_primer.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
496 | arb_primer.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
497 | arb_primer.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
498 | arb_primer.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
499 | arb_primer.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
500 | arb_primer.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
501 | arb_primer.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
502 | arb_primer.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
503 | arb_primer.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
504 | arb_primer.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
505 | |
---|
506 | arb_probe.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
507 | arb_probe.o: $(ARBHOME)/INCLUDE/aisc_global.h |
---|
508 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
509 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
510 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
511 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
512 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
513 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
514 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
515 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
516 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
517 | arb_probe.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
518 | arb_probe.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
519 | arb_probe.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
520 | arb_probe.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
521 | arb_probe.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
522 | arb_probe.o: $(ARBHOME)/INCLUDE/bytestring.h |
---|
523 | arb_probe.o: $(ARBHOME)/INCLUDE/client.h |
---|
524 | arb_probe.o: $(ARBHOME)/INCLUDE/client_types.h |
---|
525 | arb_probe.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
526 | arb_probe.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
527 | arb_probe.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
528 | arb_probe.o: $(ARBHOME)/INCLUDE/PT_com.h |
---|
529 | arb_probe.o: $(ARBHOME)/INCLUDE/RegExpr.hxx |
---|
530 | arb_probe.o: $(ARBHOME)/INCLUDE/servercntrl.h |
---|
531 | arb_probe.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
532 | arb_probe.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
533 | arb_probe.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
534 | |
---|
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 |
---|
540 | arb_probe_match.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
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 | |
---|
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 |
---|
560 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
561 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
562 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
563 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
564 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
565 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
566 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
567 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
568 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
569 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
570 | arb_read_tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
571 | arb_read_tree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
572 | arb_read_tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
573 | arb_read_tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
574 | arb_read_tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
575 | arb_read_tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
576 | arb_read_tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
577 | arb_read_tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
578 | arb_read_tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
579 | arb_read_tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
580 | arb_read_tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
581 | arb_read_tree.o: $(ARBHOME)/INCLUDE/TreeRead.h |
---|
582 | |
---|
583 | arb_replace.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
584 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
585 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
586 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
587 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
588 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
589 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
590 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
591 | arb_replace.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
592 | arb_replace.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
593 | arb_replace.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
594 | arb_replace.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
595 | arb_replace.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
596 | arb_replace.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
597 | arb_replace.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
598 | arb_replace.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
599 | arb_replace.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
600 | arb_replace.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
601 | |
---|
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 |
---|
621 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
622 | arb_sub2ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
623 | |
---|
624 | arb_test.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
625 | arb_test.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
626 | arb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
627 | arb_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
628 | arb_test.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
629 | arb_test.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
630 | arb_test.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
631 | arb_test.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
632 | arb_test.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
633 | arb_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
634 | arb_test.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
635 | arb_test.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
636 | arb_test.o: $(ARBHOME)/INCLUDE/arb_strbuf.h |
---|
637 | arb_test.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
638 | arb_test.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
639 | arb_test.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
640 | arb_test.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
641 | arb_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
642 | arb_test.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
643 | arb_test.o: $(ARBHOME)/INCLUDE/command_output.h |
---|
644 | arb_test.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
645 | arb_test.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
646 | arb_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
647 | arb_test.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
648 | arb_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
649 | arb_test.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
650 | arb_test.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
651 | arb_test.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
652 | arb_test.o: $(ARBHOME)/INCLUDE/test_runtool.h |
---|
653 | arb_test.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
654 | arb_test.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h |
---|
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 |
---|
675 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
676 | arb_write_tree_comment.o: $(ARBHOME)/INCLUDE/test_global.h |
---|