source: tags/ms_r16q2/DIST/Makefile

Last change on this file was 14986, checked in by westram, 8 years ago
  • setup for range support colors
    • moved into separate window
    • show headlines describing single ranges
    • add an overlay option to draw the active range over the main display (display code needs to call AW_displayColorRange)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.0 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/smartptr.h
83DI_clusters.o: $(ARBHOME)/INCLUDE/static_assert.h
84DI_clusters.o: $(ARBHOME)/INCLUDE/test_global.h
85DI_clusters.o: $(ARBHOME)/INCLUDE/TreeNode.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/smartptr.h
110DI_clustertree.o: $(ARBHOME)/INCLUDE/static_assert.h
111DI_clustertree.o: $(ARBHOME)/INCLUDE/test_global.h
112DI_clustertree.o: $(ARBHOME)/INCLUDE/TreeNode.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_seq_dna.hxx
121DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
122DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
123DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
124DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
125DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
126DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
127DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
128DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
129DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
130DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
131DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
132DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
133DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
134DI_compress_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
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/smartptr.h
140DI_compress_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
141DI_compress_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
142DI_compress_matrix.o: $(ARBHOME)/INCLUDE/TreeNode.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/smartptr.h
176DI_foundclusters.o: $(ARBHOME)/INCLUDE/static_assert.h
177DI_foundclusters.o: $(ARBHOME)/INCLUDE/test_global.h
178DI_foundclusters.o: $(ARBHOME)/INCLUDE/TreeNode.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_position.hxx
194DI_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
195DI_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
196DI_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
197DI_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
198DI_main.o: $(ARBHOME)/INCLUDE/awt.hxx
199DI_main.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
200DI_main.o: $(ARBHOME)/INCLUDE/cb.h
201DI_main.o: $(ARBHOME)/INCLUDE/cb_base.h
202DI_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
203DI_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
204DI_main.o: $(ARBHOME)/INCLUDE/dupstr.h
205DI_main.o: $(ARBHOME)/INCLUDE/gccver.h
206DI_main.o: $(ARBHOME)/INCLUDE/macros.hxx
207DI_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
208DI_main.o: $(ARBHOME)/INCLUDE/smartptr.h
209DI_main.o: $(ARBHOME)/INCLUDE/static_assert.h
210DI_main.o: $(ARBHOME)/INCLUDE/test_global.h
211DI_main.o: $(ARBHOME)/INCLUDE/ttypes.h
212
213DI_matr.o: di_awars.hxx
214DI_matr.o: di_clusters.hxx
215DI_matr.o: di_matr.hxx
216DI_matr.o: di_protdist.hxx
217DI_matr.o: di_view_matrix.hxx
218DI_matr.o: dist.hxx
219DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb.h
220DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
221DI_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
222DI_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
223DI_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
224DI_matr.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
225DI_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
226DI_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
227DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
228DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
229DI_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
230DI_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
231DI_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
232DI_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
233DI_matr.o: $(ARBHOME)/INCLUDE/arb_defs.h
234DI_matr.o: $(ARBHOME)/INCLUDE/arb_diff.h
235DI_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
236DI_matr.o: $(ARBHOME)/INCLUDE/arb_file.h
237DI_matr.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
238DI_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
239DI_matr.o: $(ARBHOME)/INCLUDE/arb_progress.h
240DI_matr.o: $(ARBHOME)/INCLUDE/arb_sort.h
241DI_matr.o: $(ARBHOME)/INCLUDE/arb_strarray.h
242DI_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
243DI_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
244DI_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
245DI_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
246DI_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
247DI_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
248DI_matr.o: $(ARBHOME)/INCLUDE/attributes.h
249DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
250DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
251DI_matr.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
252DI_matr.o: $(ARBHOME)/INCLUDE/aw_base.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_position.hxx
257DI_matr.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
258DI_matr.o: $(ARBHOME)/INCLUDE/aw_root.hxx
259DI_matr.o: $(ARBHOME)/INCLUDE/aw_window.hxx
260DI_matr.o: $(ARBHOME)/INCLUDE/awt.hxx
261DI_matr.o: $(ARBHOME)/INCLUDE/awt_filter.hxx
262DI_matr.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
263DI_matr.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
264DI_matr.o: $(ARBHOME)/INCLUDE/cb.h
265DI_matr.o: $(ARBHOME)/INCLUDE/cb_base.h
266DI_matr.o: $(ARBHOME)/INCLUDE/cbtypes.h
267DI_matr.o: $(ARBHOME)/INCLUDE/ColumnStat.hxx
268DI_matr.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx
269DI_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
270DI_matr.o: $(ARBHOME)/INCLUDE/downcast.h
271DI_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
272DI_matr.o: $(ARBHOME)/INCLUDE/gccver.h
273DI_matr.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
274DI_matr.o: $(ARBHOME)/INCLUDE/macros.hxx
275DI_matr.o: $(ARBHOME)/INCLUDE/neighbourjoin.hxx
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/TreeNode.h
281DI_matr.o: $(ARBHOME)/INCLUDE/ttypes.h
282
283DI_protdist.o: di_matr.hxx
284DI_protdist.o: di_protdist.hxx
285DI_protdist.o: $(ARBHOME)/INCLUDE/ad_prot.h
286DI_protdist.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
287DI_protdist.o: $(ARBHOME)/INCLUDE/AliView.hxx
288DI_protdist.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
289DI_protdist.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
290DI_protdist.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
291DI_protdist.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
292DI_protdist.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
293DI_protdist.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
294DI_protdist.o: $(ARBHOME)/INCLUDE/arb_assert.h
295DI_protdist.o: $(ARBHOME)/INCLUDE/arb_core.h
296DI_protdist.o: $(ARBHOME)/INCLUDE/arb_error.h
297DI_protdist.o: $(ARBHOME)/INCLUDE/arb_msg.h
298DI_protdist.o: $(ARBHOME)/INCLUDE/arb_progress.h
299DI_protdist.o: $(ARBHOME)/INCLUDE/arb_string.h
300DI_protdist.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
301DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb.h
302DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb_base.h
303DI_protdist.o: $(ARBHOME)/INCLUDE/arbdbt.h
304DI_protdist.o: $(ARBHOME)/INCLUDE/arbtools.h
305DI_protdist.o: $(ARBHOME)/INCLUDE/attributes.h
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/smartptr.h
312DI_protdist.o: $(ARBHOME)/INCLUDE/static_assert.h
313DI_protdist.o: $(ARBHOME)/INCLUDE/test_global.h
314DI_protdist.o: $(ARBHOME)/INCLUDE/TreeNode.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_seq_dna.hxx
323DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
324DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
325DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
326DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
327DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
328DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
329DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
330DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
331DI_save_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
332DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
333DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
334DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
335DI_save_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
336DI_save_matr.o: $(ARBHOME)/INCLUDE/attributes.h
337DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
338DI_save_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
339DI_save_matr.o: $(ARBHOME)/INCLUDE/downcast.h
340DI_save_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
341DI_save_matr.o: $(ARBHOME)/INCLUDE/gccver.h
342DI_save_matr.o: $(ARBHOME)/INCLUDE/nds.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
346DI_save_matr.o: $(ARBHOME)/INCLUDE/TreeNode.h
347
348DI_view_matrix.o: di_matr.hxx
349DI_view_matrix.o: di_view_matrix.hxx
350DI_view_matrix.o: dist.hxx
351DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
352DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
353DI_view_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
354DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
355DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
356DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
357DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
358DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
359DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
360DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_algo.h
361DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
362DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
363DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
364DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
365DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
366DI_view_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
367DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
368DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
369DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
370DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
371DI_view_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
372DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
373DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
374DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
375DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
376DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device.hxx
377DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
378DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
379DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
380DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_position.hxx
381DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
382DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_root.hxx
383DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_window.hxx
384DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
385DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_config_manager.hxx
386DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb.h
387DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb_base.h
388DI_view_matrix.o: $(ARBHOME)/INCLUDE/cbtypes.h
389DI_view_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
390DI_view_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
391DI_view_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
392DI_view_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
393DI_view_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
394DI_view_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
395DI_view_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
396DI_view_matrix.o: $(ARBHOME)/INCLUDE/TreeNode.h
397DI_view_matrix.o: $(ARBHOME)/INCLUDE/ttypes.h
398
399distanalyse.o: di_matr.hxx
400distanalyse.o: $(ARBHOME)/INCLUDE/ad_prot.h
401distanalyse.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
402distanalyse.o: $(ARBHOME)/INCLUDE/AliView.hxx
403distanalyse.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
404distanalyse.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
405distanalyse.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
406distanalyse.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
407distanalyse.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
408distanalyse.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
409distanalyse.o: $(ARBHOME)/INCLUDE/arb_assert.h
410distanalyse.o: $(ARBHOME)/INCLUDE/arb_core.h
411distanalyse.o: $(ARBHOME)/INCLUDE/arb_error.h
412distanalyse.o: $(ARBHOME)/INCLUDE/arb_msg.h
413distanalyse.o: $(ARBHOME)/INCLUDE/arb_string.h
414distanalyse.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
415distanalyse.o: $(ARBHOME)/INCLUDE/arbdb.h
416distanalyse.o: $(ARBHOME)/INCLUDE/arbdb_base.h
417distanalyse.o: $(ARBHOME)/INCLUDE/arbdbt.h
418distanalyse.o: $(ARBHOME)/INCLUDE/arbtools.h
419distanalyse.o: $(ARBHOME)/INCLUDE/attributes.h
420distanalyse.o: $(ARBHOME)/INCLUDE/cxxforward.h
421distanalyse.o: $(ARBHOME)/INCLUDE/downcast.h
422distanalyse.o: $(ARBHOME)/INCLUDE/dupstr.h
423distanalyse.o: $(ARBHOME)/INCLUDE/gccver.h
424distanalyse.o: $(ARBHOME)/INCLUDE/smartptr.h
425distanalyse.o: $(ARBHOME)/INCLUDE/static_assert.h
426distanalyse.o: $(ARBHOME)/INCLUDE/test_global.h
427distanalyse.o: $(ARBHOME)/INCLUDE/TreeNode.h
Note: See TracBrowser for help on using the repository browser.