source: tags/arb-6.0/DIST/Makefile

Last change on this file was 11513, checked in by westram, 10 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 18.4 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_filter.hxx
50DI_clusters.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
51DI_clusters.o: $(ARBHOME)/INCLUDE/AP_seq_protein.hxx
52DI_clusters.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
53DI_clusters.o: $(ARBHOME)/INCLUDE/arb_assert.h
54DI_clusters.o: $(ARBHOME)/INCLUDE/arb_core.h
55DI_clusters.o: $(ARBHOME)/INCLUDE/arb_error.h
56DI_clusters.o: $(ARBHOME)/INCLUDE/arb_msg.h
57DI_clusters.o: $(ARBHOME)/INCLUDE/arb_progress.h
58DI_clusters.o: $(ARBHOME)/INCLUDE/arb_string.h
59DI_clusters.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
60DI_clusters.o: $(ARBHOME)/INCLUDE/arbdb.h
61DI_clusters.o: $(ARBHOME)/INCLUDE/arbdb_base.h
62DI_clusters.o: $(ARBHOME)/INCLUDE/arbdbt.h
63DI_clusters.o: $(ARBHOME)/INCLUDE/arbtools.h
64DI_clusters.o: $(ARBHOME)/INCLUDE/attributes.h
65DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
66DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
67DI_clusters.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
68DI_clusters.o: $(ARBHOME)/INCLUDE/aw_base.hxx
69DI_clusters.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
70DI_clusters.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
71DI_clusters.o: $(ARBHOME)/INCLUDE/aw_root.hxx
72DI_clusters.o: $(ARBHOME)/INCLUDE/aw_window.hxx
73DI_clusters.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
74DI_clusters.o: $(ARBHOME)/INCLUDE/cb.h
75DI_clusters.o: $(ARBHOME)/INCLUDE/cb_base.h
76DI_clusters.o: $(ARBHOME)/INCLUDE/cbtypes.h
77DI_clusters.o: $(ARBHOME)/INCLUDE/cxxforward.h
78DI_clusters.o: $(ARBHOME)/INCLUDE/dbitem_set.h
79DI_clusters.o: $(ARBHOME)/INCLUDE/downcast.h
80DI_clusters.o: $(ARBHOME)/INCLUDE/dupstr.h
81DI_clusters.o: $(ARBHOME)/INCLUDE/gccver.h
82DI_clusters.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
83DI_clusters.o: $(ARBHOME)/INCLUDE/RootedTree.h
84DI_clusters.o: $(ARBHOME)/INCLUDE/smartptr.h
85DI_clusters.o: $(ARBHOME)/INCLUDE/static_assert.h
86DI_clusters.o: $(ARBHOME)/INCLUDE/test_global.h
87DI_clusters.o: $(ARBHOME)/INCLUDE/ttypes.h
88
89DI_clustertree.o: di_clustertree.hxx
90DI_clustertree.o: $(ARBHOME)/INCLUDE/ad_prot.h
91DI_clustertree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
92DI_clustertree.o: $(ARBHOME)/INCLUDE/AliView.hxx
93DI_clustertree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
94DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_assert.h
95DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_core.h
96DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_error.h
97DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_msg.h
98DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_progress.h
99DI_clustertree.o: $(ARBHOME)/INCLUDE/arb_string.h
100DI_clustertree.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
101DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdb.h
102DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
103DI_clustertree.o: $(ARBHOME)/INCLUDE/arbdbt.h
104DI_clustertree.o: $(ARBHOME)/INCLUDE/arbtools.h
105DI_clustertree.o: $(ARBHOME)/INCLUDE/attributes.h
106DI_clustertree.o: $(ARBHOME)/INCLUDE/cxxforward.h
107DI_clustertree.o: $(ARBHOME)/INCLUDE/downcast.h
108DI_clustertree.o: $(ARBHOME)/INCLUDE/dupstr.h
109DI_clustertree.o: $(ARBHOME)/INCLUDE/gccver.h
110DI_clustertree.o: $(ARBHOME)/INCLUDE/RootedTree.h
111DI_clustertree.o: $(ARBHOME)/INCLUDE/smartptr.h
112DI_clustertree.o: $(ARBHOME)/INCLUDE/static_assert.h
113DI_clustertree.o: $(ARBHOME)/INCLUDE/test_global.h
114
115DI_compress_matrix.o: di_matr.hxx
116DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
117DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
118DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
119DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
120DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
121DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
122DI_compress_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
123DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
124DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
125DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
126DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
127DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
128DI_compress_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
129DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
130DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
131DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
132DI_compress_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
133DI_compress_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
134DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
135DI_compress_matrix.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
136DI_compress_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
137DI_compress_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
138DI_compress_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
139DI_compress_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
140DI_compress_matrix.o: $(ARBHOME)/INCLUDE/RootedTree.h
141DI_compress_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
142DI_compress_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
143DI_compress_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
144
145DI_foundclusters.o: di_clustertree.hxx
146DI_foundclusters.o: di_foundclusters.hxx
147DI_foundclusters.o: $(ARBHOME)/INCLUDE/ad_prot.h
148DI_foundclusters.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
149DI_foundclusters.o: $(ARBHOME)/INCLUDE/AliView.hxx
150DI_foundclusters.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
151DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_assert.h
152DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_core.h
153DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_error.h
154DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_msg.h
155DI_foundclusters.o: $(ARBHOME)/INCLUDE/arb_string.h
156DI_foundclusters.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
157DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdb.h
158DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdb_base.h
159DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbdbt.h
160DI_foundclusters.o: $(ARBHOME)/INCLUDE/arbtools.h
161DI_foundclusters.o: $(ARBHOME)/INCLUDE/attributes.h
162DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_base.hxx
163DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
164DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_scalar.hxx
165DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_select.hxx
166DI_foundclusters.o: $(ARBHOME)/INCLUDE/aw_window.hxx
167DI_foundclusters.o: $(ARBHOME)/INCLUDE/cb.h
168DI_foundclusters.o: $(ARBHOME)/INCLUDE/cb_base.h
169DI_foundclusters.o: $(ARBHOME)/INCLUDE/cbtypes.h
170DI_foundclusters.o: $(ARBHOME)/INCLUDE/cxxforward.h
171DI_foundclusters.o: $(ARBHOME)/INCLUDE/dbitem_set.h
172DI_foundclusters.o: $(ARBHOME)/INCLUDE/downcast.h
173DI_foundclusters.o: $(ARBHOME)/INCLUDE/dupstr.h
174DI_foundclusters.o: $(ARBHOME)/INCLUDE/gccver.h
175DI_foundclusters.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
176DI_foundclusters.o: $(ARBHOME)/INCLUDE/RootedTree.h
177DI_foundclusters.o: $(ARBHOME)/INCLUDE/smartptr.h
178DI_foundclusters.o: $(ARBHOME)/INCLUDE/static_assert.h
179DI_foundclusters.o: $(ARBHOME)/INCLUDE/test_global.h
180DI_foundclusters.o: $(ARBHOME)/INCLUDE/ttypes.h
181
182DI_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
183DI_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
184DI_main.o: $(ARBHOME)/INCLUDE/arb_core.h
185DI_main.o: $(ARBHOME)/INCLUDE/arb_error.h
186DI_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
187DI_main.o: $(ARBHOME)/INCLUDE/arb_string.h
188DI_main.o: $(ARBHOME)/INCLUDE/arbdb.h
189DI_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
190DI_main.o: $(ARBHOME)/INCLUDE/arbtools.h
191DI_main.o: $(ARBHOME)/INCLUDE/attributes.h
192DI_main.o: $(ARBHOME)/INCLUDE/aw_base.hxx
193DI_main.o: $(ARBHOME)/INCLUDE/aw_device.hxx
194DI_main.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
195DI_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
196DI_main.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
197DI_main.o: $(ARBHOME)/INCLUDE/aw_position.hxx
198DI_main.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
199DI_main.o: $(ARBHOME)/INCLUDE/aw_question.hxx
200DI_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx
201DI_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx
202DI_main.o: $(ARBHOME)/INCLUDE/awt.hxx
203DI_main.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
204DI_main.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
205DI_main.o: $(ARBHOME)/INCLUDE/cb.h
206DI_main.o: $(ARBHOME)/INCLUDE/cb_base.h
207DI_main.o: $(ARBHOME)/INCLUDE/cbtypes.h
208DI_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
209DI_main.o: $(ARBHOME)/INCLUDE/dupstr.h
210DI_main.o: $(ARBHOME)/INCLUDE/gccver.h
211DI_main.o: $(ARBHOME)/INCLUDE/macros.hxx
212DI_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
213DI_main.o: $(ARBHOME)/INCLUDE/smartptr.h
214DI_main.o: $(ARBHOME)/INCLUDE/static_assert.h
215DI_main.o: $(ARBHOME)/INCLUDE/test_global.h
216DI_main.o: $(ARBHOME)/INCLUDE/ttypes.h
217
218DI_matr.o: di_awars.hxx
219DI_matr.o: di_clusters.hxx
220DI_matr.o: di_matr.hxx
221DI_matr.o: di_protdist.hxx
222DI_matr.o: di_view_matrix.hxx
223DI_matr.o: dist.hxx
224DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb.h
225DI_matr.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
226DI_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
227DI_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
228DI_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
229DI_matr.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
230DI_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
231DI_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
232DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
233DI_matr.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
234DI_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
235DI_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
236DI_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
237DI_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
238DI_matr.o: $(ARBHOME)/INCLUDE/arb_defs.h
239DI_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
240DI_matr.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
241DI_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
242DI_matr.o: $(ARBHOME)/INCLUDE/arb_progress.h
243DI_matr.o: $(ARBHOME)/INCLUDE/arb_sort.h
244DI_matr.o: $(ARBHOME)/INCLUDE/arb_strarray.h
245DI_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
246DI_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
247DI_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
248DI_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
249DI_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
250DI_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
251DI_matr.o: $(ARBHOME)/INCLUDE/attributes.h
252DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
253DI_matr.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
254DI_matr.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
255DI_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
256DI_matr.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
257DI_matr.o: $(ARBHOME)/INCLUDE/aw_file.hxx
258DI_matr.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
259DI_matr.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
260DI_matr.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
261DI_matr.o: $(ARBHOME)/INCLUDE/aw_root.hxx
262DI_matr.o: $(ARBHOME)/INCLUDE/aw_window.hxx
263DI_matr.o: $(ARBHOME)/INCLUDE/awt.hxx
264DI_matr.o: $(ARBHOME)/INCLUDE/awt_filter.hxx
265DI_matr.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
266DI_matr.o: $(ARBHOME)/INCLUDE/awt_TreeAwars.hxx
267DI_matr.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
268DI_matr.o: $(ARBHOME)/INCLUDE/cb.h
269DI_matr.o: $(ARBHOME)/INCLUDE/cb_base.h
270DI_matr.o: $(ARBHOME)/INCLUDE/cbtypes.h
271DI_matr.o: $(ARBHOME)/INCLUDE/ColumnStat.hxx
272DI_matr.o: $(ARBHOME)/INCLUDE/CT_ctree.hxx
273DI_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
274DI_matr.o: $(ARBHOME)/INCLUDE/downcast.h
275DI_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
276DI_matr.o: $(ARBHOME)/INCLUDE/gccver.h
277DI_matr.o: $(ARBHOME)/INCLUDE/gui_aliview.hxx
278DI_matr.o: $(ARBHOME)/INCLUDE/macros.hxx
279DI_matr.o: $(ARBHOME)/INCLUDE/neighbourjoin.hxx
280DI_matr.o: $(ARBHOME)/INCLUDE/RootedTree.h
281DI_matr.o: $(ARBHOME)/INCLUDE/smartptr.h
282DI_matr.o: $(ARBHOME)/INCLUDE/static_assert.h
283DI_matr.o: $(ARBHOME)/INCLUDE/test_global.h
284DI_matr.o: $(ARBHOME)/INCLUDE/ttypes.h
285
286DI_protdist.o: di_matr.hxx
287DI_protdist.o: di_protdist.hxx
288DI_protdist.o: $(ARBHOME)/INCLUDE/ad_prot.h
289DI_protdist.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
290DI_protdist.o: $(ARBHOME)/INCLUDE/AliView.hxx
291DI_protdist.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
292DI_protdist.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
293DI_protdist.o: $(ARBHOME)/INCLUDE/AP_seq_simple_pro.hxx
294DI_protdist.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
295DI_protdist.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
296DI_protdist.o: $(ARBHOME)/INCLUDE/arb_assert.h
297DI_protdist.o: $(ARBHOME)/INCLUDE/arb_core.h
298DI_protdist.o: $(ARBHOME)/INCLUDE/arb_error.h
299DI_protdist.o: $(ARBHOME)/INCLUDE/arb_msg.h
300DI_protdist.o: $(ARBHOME)/INCLUDE/arb_progress.h
301DI_protdist.o: $(ARBHOME)/INCLUDE/arb_string.h
302DI_protdist.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
303DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb.h
304DI_protdist.o: $(ARBHOME)/INCLUDE/arbdb_base.h
305DI_protdist.o: $(ARBHOME)/INCLUDE/arbdbt.h
306DI_protdist.o: $(ARBHOME)/INCLUDE/arbtools.h
307DI_protdist.o: $(ARBHOME)/INCLUDE/attributes.h
308DI_protdist.o: $(ARBHOME)/INCLUDE/aw_base.hxx
309DI_protdist.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
310DI_protdist.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
311DI_protdist.o: $(ARBHOME)/INCLUDE/cxxforward.h
312DI_protdist.o: $(ARBHOME)/INCLUDE/downcast.h
313DI_protdist.o: $(ARBHOME)/INCLUDE/dupstr.h
314DI_protdist.o: $(ARBHOME)/INCLUDE/gccver.h
315DI_protdist.o: $(ARBHOME)/INCLUDE/RootedTree.h
316DI_protdist.o: $(ARBHOME)/INCLUDE/smartptr.h
317DI_protdist.o: $(ARBHOME)/INCLUDE/static_assert.h
318DI_protdist.o: $(ARBHOME)/INCLUDE/test_global.h
319
320DI_save_matr.o: di_matr.hxx
321DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_prot.h
322DI_save_matr.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
323DI_save_matr.o: $(ARBHOME)/INCLUDE/AliView.hxx
324DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
325DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
326DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
327DI_save_matr.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
328DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_assert.h
329DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_core.h
330DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_error.h
331DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_msg.h
332DI_save_matr.o: $(ARBHOME)/INCLUDE/arb_string.h
333DI_save_matr.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
334DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb.h
335DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdb_base.h
336DI_save_matr.o: $(ARBHOME)/INCLUDE/arbdbt.h
337DI_save_matr.o: $(ARBHOME)/INCLUDE/arbtools.h
338DI_save_matr.o: $(ARBHOME)/INCLUDE/attributes.h
339DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_base.hxx
340DI_save_matr.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
341DI_save_matr.o: $(ARBHOME)/INCLUDE/cxxforward.h
342DI_save_matr.o: $(ARBHOME)/INCLUDE/downcast.h
343DI_save_matr.o: $(ARBHOME)/INCLUDE/dupstr.h
344DI_save_matr.o: $(ARBHOME)/INCLUDE/gccver.h
345DI_save_matr.o: $(ARBHOME)/INCLUDE/nds.h
346DI_save_matr.o: $(ARBHOME)/INCLUDE/RootedTree.h
347DI_save_matr.o: $(ARBHOME)/INCLUDE/smartptr.h
348DI_save_matr.o: $(ARBHOME)/INCLUDE/static_assert.h
349DI_save_matr.o: $(ARBHOME)/INCLUDE/test_global.h
350
351DI_view_matrix.o: di_matr.hxx
352DI_view_matrix.o: di_view_matrix.hxx
353DI_view_matrix.o: dist.hxx
354DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
355DI_view_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
356DI_view_matrix.o: $(ARBHOME)/INCLUDE/AliView.hxx
357DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
358DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
359DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
360DI_view_matrix.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
361DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_algo.h
362DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
363DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
364DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
365DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
366DI_view_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
367DI_view_matrix.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
368DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
369DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
370DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
371DI_view_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
372DI_view_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
373DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
374DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awar_defs.hxx
375DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
376DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
377DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
378DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device.hxx
379DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_device_click.hxx
380DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
381DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
382DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_position.hxx
383DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_preset.hxx
384DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_root.hxx
385DI_view_matrix.o: $(ARBHOME)/INCLUDE/aw_window.hxx
386DI_view_matrix.o: $(ARBHOME)/INCLUDE/awt_canvas.hxx
387DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb.h
388DI_view_matrix.o: $(ARBHOME)/INCLUDE/cb_base.h
389DI_view_matrix.o: $(ARBHOME)/INCLUDE/cbtypes.h
390DI_view_matrix.o: $(ARBHOME)/INCLUDE/cxxforward.h
391DI_view_matrix.o: $(ARBHOME)/INCLUDE/downcast.h
392DI_view_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
393DI_view_matrix.o: $(ARBHOME)/INCLUDE/gccver.h
394DI_view_matrix.o: $(ARBHOME)/INCLUDE/RootedTree.h
395DI_view_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
396DI_view_matrix.o: $(ARBHOME)/INCLUDE/static_assert.h
397DI_view_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
398DI_view_matrix.o: $(ARBHOME)/INCLUDE/ttypes.h
399
400distanalyse.o: di_matr.hxx
401distanalyse.o: $(ARBHOME)/INCLUDE/ad_prot.h
402distanalyse.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
403distanalyse.o: $(ARBHOME)/INCLUDE/AliView.hxx
404distanalyse.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
405distanalyse.o: $(ARBHOME)/INCLUDE/AP_matrix.hxx
406distanalyse.o: $(ARBHOME)/INCLUDE/AP_pro_a_nucs.hxx
407distanalyse.o: $(ARBHOME)/INCLUDE/AP_seq_dna.hxx
408distanalyse.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
409distanalyse.o: $(ARBHOME)/INCLUDE/AP_Tree.hxx
410distanalyse.o: $(ARBHOME)/INCLUDE/arb_assert.h
411distanalyse.o: $(ARBHOME)/INCLUDE/arb_core.h
412distanalyse.o: $(ARBHOME)/INCLUDE/arb_error.h
413distanalyse.o: $(ARBHOME)/INCLUDE/arb_msg.h
414distanalyse.o: $(ARBHOME)/INCLUDE/arb_string.h
415distanalyse.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
416distanalyse.o: $(ARBHOME)/INCLUDE/arbdb.h
417distanalyse.o: $(ARBHOME)/INCLUDE/arbdb_base.h
418distanalyse.o: $(ARBHOME)/INCLUDE/arbdbt.h
419distanalyse.o: $(ARBHOME)/INCLUDE/arbtools.h
420distanalyse.o: $(ARBHOME)/INCLUDE/attributes.h
421distanalyse.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
422distanalyse.o: $(ARBHOME)/INCLUDE/aw_base.hxx
423distanalyse.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
424distanalyse.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
425distanalyse.o: $(ARBHOME)/INCLUDE/aw_root.hxx
426distanalyse.o: $(ARBHOME)/INCLUDE/cb.h
427distanalyse.o: $(ARBHOME)/INCLUDE/cb_base.h
428distanalyse.o: $(ARBHOME)/INCLUDE/cbtypes.h
429distanalyse.o: $(ARBHOME)/INCLUDE/cxxforward.h
430distanalyse.o: $(ARBHOME)/INCLUDE/downcast.h
431distanalyse.o: $(ARBHOME)/INCLUDE/dupstr.h
432distanalyse.o: $(ARBHOME)/INCLUDE/gccver.h
433distanalyse.o: $(ARBHOME)/INCLUDE/RootedTree.h
434distanalyse.o: $(ARBHOME)/INCLUDE/smartptr.h
435distanalyse.o: $(ARBHOME)/INCLUDE/static_assert.h
436distanalyse.o: $(ARBHOME)/INCLUDE/test_global.h
437distanalyse.o: $(ARBHOME)/INCLUDE/ttypes.h
Note: See TracBrowser for help on using the repository browser.