source: tags/ms_r17q3/TOOLS/Makefile

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