source: tags/arb_5.5/NALIGNER/Makefile

Last change on this file was 5709, checked in by westram, 15 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.1 KB
Line 
1# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
2
3.SUFFIXES: .o .c .cxx .depend
4
5#CFLAGS = -g
6#CFLAGS = -O2
7CFLAGS = $(cflags)
8
9CPP_OBJECTS = \
10        ali_aligner.o \
11        ali_arbdb.o \
12        ali_global.o \
13        ali_main.o \
14        ali_pathmap.o \
15        ali_prealigner.o \
16        ali_profile.o \
17        ali_pt.o \
18        ali_sequence.o \
19        ali_solution.o \
20
21$(MAIN): $(CPP_OBJECTS)
22        $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS)
23
24.cxx.o:
25        $(CPP) $(CFLAGS) -c -o $@ $< $(CPPINCLUDES)
26
27clean:
28        rm -f $(CPP_OBJECTS) *.a
29
30DEPENDS = $(CPP_OBJECTS:.o=.depend)
31depends: $(DEPENDS)
32        @cat $(DEPENDS) | grep -v '^#' >>Makefile
33        @rm $(DEPENDS)
34$(DEPENDS): depend.init
35depend.init:
36        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
37.c.depend:
38        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
39.cxx.depend:
40        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
41
42# DO NOT DELETE THIS LINE -- make depend depends on it.
43
44# Do not add dependencies manually - use 'make depend' in $ARBHOME
45# For formatting issues see SOURCE_TOOLS/fix_depends.pl
46
47ali_aligner.o: ali_aligner.hxx
48ali_aligner.o: ali_arbdb.hxx
49ali_aligner.o: ali_misc.hxx
50ali_aligner.o: ali_other_stuff.hxx
51ali_aligner.o: ali_pathmap.hxx
52ali_aligner.o: ali_profile.hxx
53ali_aligner.o: ali_pt.hxx
54ali_aligner.o: ali_sequence.hxx
55ali_aligner.o: ali_solution.hxx
56ali_aligner.o: ali_tarray.hxx
57ali_aligner.o: ali_tlist.hxx
58ali_aligner.o: ali_tstack.hxx
59ali_aligner.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
60ali_aligner.o: $(ARBHOME)/INCLUDE/ad_prot.h
61ali_aligner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
62ali_aligner.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
63ali_aligner.o: $(ARBHOME)/INCLUDE/arb_assert.h
64ali_aligner.o: $(ARBHOME)/INCLUDE/arbdb.h
65ali_aligner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
66ali_aligner.o: $(ARBHOME)/INCLUDE/arbdbt.h
67ali_aligner.o: $(ARBHOME)/INCLUDE/attributes.h
68ali_aligner.o: $(ARBHOME)/INCLUDE/client.h
69ali_aligner.o: $(ARBHOME)/INCLUDE/PT_com.h
70ali_aligner.o: $(ARBHOME)/INCLUDE/server.h
71ali_aligner.o: $(ARBHOME)/INCLUDE/servercntrl.h
72
73ali_arbdb.o: ali_arbdb.hxx
74ali_arbdb.o: ali_misc.hxx
75ali_arbdb.o: ali_other_stuff.hxx
76ali_arbdb.o: ali_sequence.hxx
77ali_arbdb.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
78ali_arbdb.o: $(ARBHOME)/INCLUDE/ad_prot.h
79ali_arbdb.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
80ali_arbdb.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
81ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_assert.h
82ali_arbdb.o: $(ARBHOME)/INCLUDE/arbdb.h
83ali_arbdb.o: $(ARBHOME)/INCLUDE/arbdb_base.h
84ali_arbdb.o: $(ARBHOME)/INCLUDE/arbdbt.h
85ali_arbdb.o: $(ARBHOME)/INCLUDE/attributes.h
86ali_arbdb.o: $(ARBHOME)/INCLUDE/PT_com.h
87ali_arbdb.o: $(ARBHOME)/INCLUDE/server.h
88ali_arbdb.o: $(ARBHOME)/INCLUDE/servercntrl.h
89
90ali_global.o: ali_arbdb.hxx
91ali_global.o: ali_global.hxx
92ali_global.o: ali_misc.hxx
93ali_global.o: ali_other_stuff.hxx
94ali_global.o: ali_pathmap.hxx
95ali_global.o: ali_prealigner.hxx
96ali_global.o: ali_profile.hxx
97ali_global.o: ali_pt.hxx
98ali_global.o: ali_sequence.hxx
99ali_global.o: ali_solution.hxx
100ali_global.o: ali_tarray.hxx
101ali_global.o: ali_tlist.hxx
102ali_global.o: ali_tstack.hxx
103ali_global.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
104ali_global.o: $(ARBHOME)/INCLUDE/ad_prot.h
105ali_global.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
106ali_global.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
107ali_global.o: $(ARBHOME)/INCLUDE/arb_assert.h
108ali_global.o: $(ARBHOME)/INCLUDE/arbdb.h
109ali_global.o: $(ARBHOME)/INCLUDE/arbdb_base.h
110ali_global.o: $(ARBHOME)/INCLUDE/arbdbt.h
111ali_global.o: $(ARBHOME)/INCLUDE/attributes.h
112ali_global.o: $(ARBHOME)/INCLUDE/client.h
113ali_global.o: $(ARBHOME)/INCLUDE/PT_com.h
114ali_global.o: $(ARBHOME)/INCLUDE/server.h
115ali_global.o: $(ARBHOME)/INCLUDE/servercntrl.h
116
117ali_main.o: ali_aligner.hxx
118ali_main.o: ali_arbdb.hxx
119ali_main.o: ali_global.hxx
120ali_main.o: ali_misc.hxx
121ali_main.o: ali_other_stuff.hxx
122ali_main.o: ali_pathmap.hxx
123ali_main.o: ali_prealigner.hxx
124ali_main.o: ali_profile.hxx
125ali_main.o: ali_pt.hxx
126ali_main.o: ali_sequence.hxx
127ali_main.o: ali_solution.hxx
128ali_main.o: ali_tarray.hxx
129ali_main.o: ali_tlist.hxx
130ali_main.o: ali_tstack.hxx
131ali_main.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
132ali_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
133ali_main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
134ali_main.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
135ali_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
136ali_main.o: $(ARBHOME)/INCLUDE/arbdb.h
137ali_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
138ali_main.o: $(ARBHOME)/INCLUDE/arbdbt.h
139ali_main.o: $(ARBHOME)/INCLUDE/attributes.h
140ali_main.o: $(ARBHOME)/INCLUDE/client.h
141ali_main.o: $(ARBHOME)/INCLUDE/PT_com.h
142ali_main.o: $(ARBHOME)/INCLUDE/server.h
143ali_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
144
145ali_pathmap.o: ali_misc.hxx
146ali_pathmap.o: ali_pathmap.hxx
147ali_pathmap.o: ali_tarray.hxx
148ali_pathmap.o: ali_tlist.hxx
149ali_pathmap.o: $(ARBHOME)/INCLUDE/attributes.h
150
151ali_prealigner.o: ali_aligner.hxx
152ali_prealigner.o: ali_arbdb.hxx
153ali_prealigner.o: ali_misc.hxx
154ali_prealigner.o: ali_other_stuff.hxx
155ali_prealigner.o: ali_pathmap.hxx
156ali_prealigner.o: ali_prealigner.hxx
157ali_prealigner.o: ali_profile.hxx
158ali_prealigner.o: ali_pt.hxx
159ali_prealigner.o: ali_sequence.hxx
160ali_prealigner.o: ali_solution.hxx
161ali_prealigner.o: ali_tarray.hxx
162ali_prealigner.o: ali_tlist.hxx
163ali_prealigner.o: ali_tstack.hxx
164ali_prealigner.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
165ali_prealigner.o: $(ARBHOME)/INCLUDE/ad_prot.h
166ali_prealigner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
167ali_prealigner.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
168ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_assert.h
169ali_prealigner.o: $(ARBHOME)/INCLUDE/arbdb.h
170ali_prealigner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
171ali_prealigner.o: $(ARBHOME)/INCLUDE/arbdbt.h
172ali_prealigner.o: $(ARBHOME)/INCLUDE/attributes.h
173ali_prealigner.o: $(ARBHOME)/INCLUDE/client.h
174ali_prealigner.o: $(ARBHOME)/INCLUDE/PT_com.h
175ali_prealigner.o: $(ARBHOME)/INCLUDE/server.h
176ali_prealigner.o: $(ARBHOME)/INCLUDE/servercntrl.h
177
178ali_profile.o: ali_arbdb.hxx
179ali_profile.o: ali_misc.hxx
180ali_profile.o: ali_other_stuff.hxx
181ali_profile.o: ali_profile.hxx
182ali_profile.o: ali_pt.hxx
183ali_profile.o: ali_sequence.hxx
184ali_profile.o: ali_solution.hxx
185ali_profile.o: ali_tlist.hxx
186ali_profile.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
187ali_profile.o: $(ARBHOME)/INCLUDE/ad_prot.h
188ali_profile.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
189ali_profile.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
190ali_profile.o: $(ARBHOME)/INCLUDE/arb_assert.h
191ali_profile.o: $(ARBHOME)/INCLUDE/arbdb.h
192ali_profile.o: $(ARBHOME)/INCLUDE/arbdb_base.h
193ali_profile.o: $(ARBHOME)/INCLUDE/arbdbt.h
194ali_profile.o: $(ARBHOME)/INCLUDE/attributes.h
195ali_profile.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
196ali_profile.o: $(ARBHOME)/INCLUDE/client.h
197ali_profile.o: $(ARBHOME)/INCLUDE/PT_com.h
198ali_profile.o: $(ARBHOME)/INCLUDE/server.h
199ali_profile.o: $(ARBHOME)/INCLUDE/servercntrl.h
200
201ali_pt.o: ali_misc.hxx
202ali_pt.o: ali_other_stuff.hxx
203ali_pt.o: ali_pt.hxx
204ali_pt.o: ali_sequence.hxx
205ali_pt.o: ali_tlist.hxx
206ali_pt.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
207ali_pt.o: $(ARBHOME)/INCLUDE/ad_prot.h
208ali_pt.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
209ali_pt.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
210ali_pt.o: $(ARBHOME)/INCLUDE/arb_assert.h
211ali_pt.o: $(ARBHOME)/INCLUDE/arbdb.h
212ali_pt.o: $(ARBHOME)/INCLUDE/arbdb_base.h
213ali_pt.o: $(ARBHOME)/INCLUDE/arbdbt.h
214ali_pt.o: $(ARBHOME)/INCLUDE/attributes.h
215ali_pt.o: $(ARBHOME)/INCLUDE/client.h
216ali_pt.o: $(ARBHOME)/INCLUDE/PT_com.h
217ali_pt.o: $(ARBHOME)/INCLUDE/server.h
218ali_pt.o: $(ARBHOME)/INCLUDE/servercntrl.h
219
220ali_sequence.o: ali_misc.hxx
221ali_sequence.o: ali_sequence.hxx
222ali_sequence.o: $(ARBHOME)/INCLUDE/attributes.h
223
224ali_solution.o: ali_arbdb.hxx
225ali_solution.o: ali_misc.hxx
226ali_solution.o: ali_other_stuff.hxx
227ali_solution.o: ali_profile.hxx
228ali_solution.o: ali_pt.hxx
229ali_solution.o: ali_sequence.hxx
230ali_solution.o: ali_solution.hxx
231ali_solution.o: ali_tlist.hxx
232ali_solution.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
233ali_solution.o: $(ARBHOME)/INCLUDE/ad_prot.h
234ali_solution.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
235ali_solution.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
236ali_solution.o: $(ARBHOME)/INCLUDE/arb_assert.h
237ali_solution.o: $(ARBHOME)/INCLUDE/arbdb.h
238ali_solution.o: $(ARBHOME)/INCLUDE/arbdb_base.h
239ali_solution.o: $(ARBHOME)/INCLUDE/arbdbt.h
240ali_solution.o: $(ARBHOME)/INCLUDE/attributes.h
241ali_solution.o: $(ARBHOME)/INCLUDE/client.h
242ali_solution.o: $(ARBHOME)/INCLUDE/PT_com.h
243ali_solution.o: $(ARBHOME)/INCLUDE/server.h
244ali_solution.o: $(ARBHOME)/INCLUDE/servercntrl.h
Note: See TracBrowser for help on using the repository browser.