source: tags/ms_r18q1/TOOLS/Makefile

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