source: tags/testbuild/DIST/Makefile

Last change on this file was 12957, checked in by westram, 11 years ago
  • adds test for distance matrix
    • calculates matrices for
      • all sequence types
      • using 3 different transformations
        • autodetected for dna and pro
        • DI_TRANSFORMATION_FELSENSTEIN for rna (triggers overall frequency calculation)
    • save matrices in all available formats
    • covers all DIST-code-locations marked in [12942] (calculation using user-defined transformation-matrix remains untested)
  • few minor fixes
    • param constness
    • free/delete mismatch
    • useless access behind EOS (while printing NDS generated string in DI_SAVE_READABLE-mode)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.9 KB
Line 
1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .cxx .depend
4
5CPP_OBJECTS = \
6        DI_foundclusters.o \
7        DI_clusters.o \
8        DI_clustertree.o \
9        DI_compress_matrix.o \
10        DI_main.o \
11        DI_matr.o \
12        DI_protdist.o \
13        DI_save_matr.o \
14        DI_view_matrix.o \
15        distanalyse.o \
16
17$(MAIN): $(CPP_OBJECTS)
18        $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS)
19.cxx.o:
20        $(A_CXX) $(cflags) $(cxxflags) -c $<  $(CXX_INCLUDES) $(POST_COMPILE)
21
22clean:
23        rm -f $(CPP_OBJECTS) *.a
24
25DEPENDS = $(CPP_OBJECTS:.o=.depend)
26depends: $(DEPENDS)
27        @cat $(DEPENDS) | grep -v '^#' >>Makefile
28        @rm $(DEPENDS)
29$(DEPENDS): depend.init
30depend.init:
31        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
32.c.depend:
33        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
34.cxx.depend:
35        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
36
37# DO NOT DELETE THIS LINE -- make depend depends on it.
38
39# Do not add dependencies manually - use 'make depend' in $ARBHOME
40# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
41
42DI_clusters.o: di_awars.hxx
43DI_clusters.o: di_clusters.hxx
44DI_clusters.o: di_clustertree.hxx
45DI_clusters.o: di_foundclusters.hxx
46DI_clusters.o: $(ARBHOME)/INCLUDE/ad_prot.h
47DI_clusters.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
48DI_clusters.o: $(ARBHOME)/INCLUDE/AliView.hxx
49DI_clusters.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
50DI_clusters.o: $(ARBHOME)/INCLUDE/AP_seq_protein.hxx
51DI_clusters.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
52DI_clusters.o: $(ARBHOME)/INCLUDE/arb_assert.h
53DI_clusters.o: $(ARBHOME)/INCLUDE/arb_core.h
54DI_clusters.o: $(ARBHOME)/INCLUDE/arb_error.h
55DI_clusters.o: $(ARBHOME)/INCLUDE/arb_msg.h
56DI_clusters.o: $(ARBHOME)/INCLUDE/arb_progress.h
57DI_clusters.o: $(ARBHOME)/INCLUDE/arb_string.h
58DI_clusters.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
59DI_clusters.o: $(ARBHOME)/INCLUDE/arbdb.h
60DI_clusters.o: $(ARBHOME)/INCLUDE/arbdb_base.h
61DI_clusters.o: $(ARBHOME)/INCLUDE/arbdbt.h
62DI_clusters.o: $(ARBHOME)/INCLUDE/arbtools.h
63DI_clusters.o: $(ARBHOME)/INCLUDE/attributes.h
64DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
65DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
66DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
67DI_clusters.o: $(ARBHOME)/INCLUDE/aw_base.hxx
68DI_clusters.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
69DI_clusters.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
70DI_clusters.o: $(ARBHOME)/INCLUDE/aw_root.hxx
71DI_clusters.o: $(ARBHOME)/INCLUDE/aw_window.hxx
72DI_clusters.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
73DI_clusters.o: $(ARBHOME)/INCLUDE/cb.h
74DI_clusters.o: $(ARBHOME)/INCLUDE/cb_base.h
75DI_clusters.o: $(ARBHOME)/INCLUDE/cbtypes.h
76DI_clusters.o: $(ARBHOME)/INCLUDE/cxxforward.h
77DI_clusters.o: $(ARBHOME)/INCLUDE/dbitem_set.h
78DI_clusters.o: $(ARBHOME)/INCLUDE/downcast.h
79DI_clusters.o: $(ARBHOME)/INCLUDE/dupstr.h
80DI_clusters.o: $(ARBHOME)/INCLUDE/gccver.h
81DI_clusters.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
82DI_clusters.o: $(ARBHOME)/INCLUDE/RootedTree.h
83DI_clusters.o: $(ARBHOME)/INCLUDE/smartptr.h
84DI_clusters.o: $(ARBHOME)/INCLUDE/static_assert.h
85DI_clusters.o: $(ARBHOME)/INCLUDE/test_global.h
86DI_clusters.o: $(ARBHOME)/INCLUDE/ttypes.h
87
88DI_clustertree.o: di_clustertree.hxx
89DI_clustertree.o: $(ARBHOME)/INCLUDE/ad_prot.h
90DI_clustertree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
91DI_clustertree.o: $(ARBHOME)/INCLUDE/AliView.hxx
92DI_clustertree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
93DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_assert.h
94DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_core.h
95DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_error.h
96DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_msg.h
97DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_progress.h
98DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_string.h
99DI_clustertree.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
100DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdb.h
101DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
102DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdbt.h
103DI_clustertree.o: $(ARBHOME)/INCLUDE/arbtools.h
104DI_clustertree.o: $(ARBHOME)/INCLUDE/attributes.h
105DI_clustertree.o: $(ARBHOME)/INCLUDE/cxxforward.h
106DI_clustertree.o: $(ARBHOME)/INCLUDE/downcast.h
107DI_clustertree.o: $(ARBHOME)/INCLUDE/dupstr.h
108DI_clustertree.o: $(ARBHOME)/INCLUDE/gccver.h
109DI_clustertree.o: $(ARBHOME)/INCLUDE/RootedTree.h
110DI_clustertree.o: $(ARBHOME)/INCLUDE/smartptr.h
111DI_clustertree.o: $(ARBHOME)/INCLUDE/static_assert.h
112DI_clustertree.o: $(ARBHOME)/INCLUDE/test_global.h
113
114DI_compress_matrix.o: di_matr.hxx
115DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
116DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
117DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
118DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
119DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
120DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
121DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
122DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
123DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
124DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
125DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
126DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
127DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
128DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
129DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
130DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
131DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
132DI_compress_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
133DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
134DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
135DI_compress_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
136DI_compress_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
137DI_compress_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
138DI_compress_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
139DI_compress_matrix.o: $(ARBHOME)/INCLUDE/RootedTree.h
140DI_compress_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
141DI_compress_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
142DI_compress_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
143
144DI_foundclusters.o: di_clustertree.hxx
145DI_foundclusters.o: di_foundclusters.hxx
146DI_foundclusters.o: $(ARBHOME)/INCLUDE/ad_prot.h
147DI_foundclusters.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
148DI_foundclusters.o: $(ARBHOME)/INCLUDE/AliView.hxx
149DI_foundclusters.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
150DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_assert.h
151DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_core.h
152DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_error.h
153DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_msg.h
154DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_string.h
155DI_foundclusters.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
156DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdb.h
157DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdb_base.h
158DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdbt.h
159DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbtools.h
160DI_foundclusters.o: $(ARBHOME)/INCLUDE/attributes.h
161DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_base.hxx
162DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
163DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
164DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_select.hxx
165DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_window.hxx
166DI_foundclusters.o: $(ARBHOME)/INCLUDE/cb.h
167DI_foundclusters.o: $(ARBHOME)/INCLUDE/cb_base.h
168DI_foundclusters.o: $(ARBHOME)/INCLUDE/cbtypes.h
169DI_foundclusters.o: $(ARBHOME)/INCLUDE/cxxforward.h
170DI_foundclusters.o: $(ARBHOME)/INCLUDE/dbitem_set.h
171DI_foundclusters.o: $(ARBHOME)/INCLUDE/downcast.h
172DI_foundclusters.o: $(ARBHOME)/INCLUDE/dupstr.h
173DI_foundclusters.o: $(ARBHOME)/INCLUDE/gccver.h
174DI_foundclusters.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
175DI_foundclusters.o: $(ARBHOME)/INCLUDE/RootedTree.h
176DI_foundclusters.o: $(ARBHOME)/INCLUDE/smartptr.h
177DI_foundclusters.o: $(ARBHOME)/INCLUDE/static_assert.h
178DI_foundclusters.o: $(ARBHOME)/INCLUDE/test_global.h
179DI_foundclusters.o: $(ARBHOME)/INCLUDE/ttypes.h
180
181DI_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
182DI_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
183DI_main.o: $(ARBHOME)/INCLUDE/arb_core.h
184DI_main.o: $(ARBHOME)/INCLUDE/arb_error.h
185DI_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
186DI_main.o: $(ARBHOME)/INCLUDE/arb_string.h
187DI_main.o: $(ARBHOME)/INCLUDE/arbdb.h
188DI_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
189DI_main.o: $(ARBHOME)/INCLUDE/arbtools.h
190DI_main.o: $(ARBHOME)/INCLUDE/attributes.h
191DI_main.o: $(ARBHOME)/INCLUDE/aw_base.hxx
192DI_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
193DI_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
194DI_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
195DI_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
196DI_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
197DI_main.o: $(ARBHOME)/INCLUDE/awt.hxx
198DI_main.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
199DI_main.o: $(ARBHOME)/INCLUDE/cb.h
200DI_main.o: $(ARBHOME)/INCLUDE/cb_base.h
201DI_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
202DI_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
203DI_main.o: $(ARBHOME)/INCLUDE/dupstr.h
204DI_main.o: $(ARBHOME)/INCLUDE/gccver.h
205DI_main.o: $(ARBHOME)/INCLUDE/macros.hxx
206DI_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
207DI_main.o: $(ARBHOME)/INCLUDE/smartptr.h
208DI_main.o: $(ARBHOME)/INCLUDE/static_assert.h
209DI_main.o: $(ARBHOME)/INCLUDE/test_global.h
210DI_main.o: $(ARBHOME)/INCLUDE/ttypes.h
211
212DI_matr.o: di_awars.hxx
213DI_matr.o: di_clusters.hxx
214DI_matr.o: di_matr.hxx
215DI_matr.o: di_protdist.hxx
216DI_matr.o: di_view_matrix.hxx
217DI_matr.o: dist.hxx
218DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb.h
219DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
220DI_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
221DI_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
222DI_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
223DI_matr.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
224DI_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
225DI_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
226DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
227DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
228DI_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
229DI_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
230DI_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
231DI_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
232DI_matr.o: $(ARBHOME)/INCLUDE/arb_defs.h
233DI_matr.o: $(ARBHOME)/INCLUDE/arb_diff.h
234DI_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
235DI_matr.o: $(ARBHOME)/INCLUDE/arb_file.h
236DI_matr.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
237DI_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
238DI_matr.o: $(ARBHOME)/INCLUDE/arb_progress.h
239DI_matr.o: $(ARBHOME)/INCLUDE/arb_sort.h
240DI_matr.o: $(ARBHOME)/INCLUDE/arb_strarray.h
241DI_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
242DI_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
243DI_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
244DI_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
245DI_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
246DI_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
247DI_matr.o: $(ARBHOME)/INCLUDE/attributes.h
248DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
249DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
250DI_matr.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
251DI_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
252DI_matr.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
253DI_matr.o: $(ARBHOME)/INCLUDE/aw_file.hxx
254DI_matr.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
255DI_matr.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
256DI_matr.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
257DI_matr.o: $(ARBHOME)/INCLUDE/aw_root.hxx
258DI_matr.o: $(ARBHOME)/INCLUDE/aw_window.hxx
259DI_matr.o: $(ARBHOME)/INCLUDE/awt.hxx
260DI_matr.o: $(ARBHOME)/INCLUDE/awt_filter.hxx
261DI_matr.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
262DI_matr.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
263DI_matr.o: $(ARBHOME)/INCLUDE/cb.h
264DI_matr.o: $(ARBHOME)/INCLUDE/cb_base.h
265DI_matr.o: $(ARBHOME)/INCLUDE/cbtypes.h
266DI_matr.o: $(ARBHOME)/INCLUDE/ColumnStat.hxx
267DI_matr.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx
268DI_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
269DI_matr.o: $(ARBHOME)/INCLUDE/downcast.h
270DI_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
271DI_matr.o: $(ARBHOME)/INCLUDE/gccver.h
272DI_matr.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
273DI_matr.o: $(ARBHOME)/INCLUDE/macros.hxx
274DI_matr.o: $(ARBHOME)/INCLUDE/neighbourjoin.hxx
275DI_matr.o: $(ARBHOME)/INCLUDE/RootedTree.h
276DI_matr.o: $(ARBHOME)/INCLUDE/smartptr.h
277DI_matr.o: $(ARBHOME)/INCLUDE/static_assert.h
278DI_matr.o: $(ARBHOME)/INCLUDE/test_global.h
279DI_matr.o: $(ARBHOME)/INCLUDE/test_unit.h
280DI_matr.o: $(ARBHOME)/INCLUDE/ttypes.h
281
282DI_protdist.o: di_matr.hxx
283DI_protdist.o: di_protdist.hxx
284DI_protdist.o: $(ARBHOME)/INCLUDE/ad_prot.h
285DI_protdist.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
286DI_protdist.o: $(ARBHOME)/INCLUDE/AliView.hxx
287DI_protdist.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
288DI_protdist.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
289DI_protdist.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
290DI_protdist.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
291DI_protdist.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
292DI_protdist.o: $(ARBHOME)/INCLUDE/arb_assert.h
293DI_protdist.o: $(ARBHOME)/INCLUDE/arb_core.h
294DI_protdist.o: $(ARBHOME)/INCLUDE/arb_error.h
295DI_protdist.o: $(ARBHOME)/INCLUDE/arb_msg.h
296DI_protdist.o: $(ARBHOME)/INCLUDE/arb_progress.h
297DI_protdist.o: $(ARBHOME)/INCLUDE/arb_string.h
298DI_protdist.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
299DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb.h
300DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb_base.h
301DI_protdist.o: $(ARBHOME)/INCLUDE/arbdbt.h
302DI_protdist.o: $(ARBHOME)/INCLUDE/arbtools.h
303DI_protdist.o: $(ARBHOME)/INCLUDE/attributes.h
304DI_protdist.o: $(ARBHOME)/INCLUDE/aw_base.hxx
305DI_protdist.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
306DI_protdist.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
307DI_protdist.o: $(ARBHOME)/INCLUDE/cxxforward.h
308DI_protdist.o: $(ARBHOME)/INCLUDE/downcast.h
309DI_protdist.o: $(ARBHOME)/INCLUDE/dupstr.h
310DI_protdist.o: $(ARBHOME)/INCLUDE/gccver.h
311DI_protdist.o: $(ARBHOME)/INCLUDE/RootedTree.h
312DI_protdist.o: $(ARBHOME)/INCLUDE/smartptr.h
313DI_protdist.o: $(ARBHOME)/INCLUDE/static_assert.h
314DI_protdist.o: $(ARBHOME)/INCLUDE/test_global.h
315
316DI_save_matr.o: di_matr.hxx
317DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
318DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
319DI_save_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
320DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
321DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
322DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
323DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
324DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
325DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
326DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
327DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
328DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
329DI_save_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
330DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
331DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
332DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
333DI_save_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
334DI_save_matr.o: $(ARBHOME)/INCLUDE/attributes.h
335DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
336DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
337DI_save_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
338DI_save_matr.o: $(ARBHOME)/INCLUDE/downcast.h
339DI_save_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
340DI_save_matr.o: $(ARBHOME)/INCLUDE/gccver.h
341DI_save_matr.o: $(ARBHOME)/INCLUDE/nds.h
342DI_save_matr.o: $(ARBHOME)/INCLUDE/RootedTree.h
343DI_save_matr.o: $(ARBHOME)/INCLUDE/smartptr.h
344DI_save_matr.o: $(ARBHOME)/INCLUDE/static_assert.h
345DI_save_matr.o: $(ARBHOME)/INCLUDE/test_global.h
346
347DI_view_matrix.o: di_matr.hxx
348DI_view_matrix.o: di_view_matrix.hxx
349DI_view_matrix.o: dist.hxx
350DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
351DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
352DI_view_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
353DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
354DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
355DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
356DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
357DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_algo.h
358DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
359DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
360DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
361DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
362DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
363DI_view_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
364DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
365DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
366DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
367DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
368DI_view_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
369DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
370DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
371DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
372DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
373DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
374DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device.hxx
375DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
376DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
377DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
378DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_position.hxx
379DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
380DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_root.hxx
381DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_window.hxx
382DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
383DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb.h
384DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb_base.h
385DI_view_matrix.o: $(ARBHOME)/INCLUDE/cbtypes.h
386DI_view_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
387DI_view_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
388DI_view_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
389DI_view_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
390DI_view_matrix.o: $(ARBHOME)/INCLUDE/RootedTree.h
391DI_view_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
392DI_view_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
393DI_view_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
394DI_view_matrix.o: $(ARBHOME)/INCLUDE/ttypes.h
395
396distanalyse.o: di_matr.hxx
397distanalyse.o: $(ARBHOME)/INCLUDE/ad_prot.h
398distanalyse.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
399distanalyse.o: $(ARBHOME)/INCLUDE/AliView.hxx
400distanalyse.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
401distanalyse.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
402distanalyse.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
403distanalyse.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
404distanalyse.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
405distanalyse.o: $(ARBHOME)/INCLUDE/arb_assert.h
406distanalyse.o: $(ARBHOME)/INCLUDE/arb_core.h
407distanalyse.o: $(ARBHOME)/INCLUDE/arb_error.h
408distanalyse.o: $(ARBHOME)/INCLUDE/arb_msg.h
409distanalyse.o: $(ARBHOME)/INCLUDE/arb_string.h
410distanalyse.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
411distanalyse.o: $(ARBHOME)/INCLUDE/arbdb.h
412distanalyse.o: $(ARBHOME)/INCLUDE/arbdb_base.h
413distanalyse.o: $(ARBHOME)/INCLUDE/arbdbt.h
414distanalyse.o: $(ARBHOME)/INCLUDE/arbtools.h
415distanalyse.o: $(ARBHOME)/INCLUDE/attributes.h
416distanalyse.o: $(ARBHOME)/INCLUDE/aw_base.hxx
417distanalyse.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
418distanalyse.o: $(ARBHOME)/INCLUDE/cxxforward.h
419distanalyse.o: $(ARBHOME)/INCLUDE/downcast.h
420distanalyse.o: $(ARBHOME)/INCLUDE/dupstr.h
421distanalyse.o: $(ARBHOME)/INCLUDE/gccver.h
422distanalyse.o: $(ARBHOME)/INCLUDE/RootedTree.h
423distanalyse.o: $(ARBHOME)/INCLUDE/smartptr.h
424distanalyse.o: $(ARBHOME)/INCLUDE/static_assert.h
425distanalyse.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the repository browser.