source: branches/help/NALIGNER/Makefile

Last change on this file was 18725, checked in by westram, 3 years ago
  • rename CPP_OBJECTSOBJECTS.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 13.6 KB
Line 
1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .c .cxx .depend
4
5OBJECTS = $(subst .cxx,.o,$(wildcard *.cxx))
6
7$(MAIN): $(OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
9
10.cxx.o:
11        $(A_CXX) $(cflags) $(cxxflags) -c -o $@ $< $(CXX_INCLUDES) $(POST_COMPILE) $<
12
13clean:
14        rm -f $(OBJECTS) *.a
15
16DEPENDS = $(OBJECTS:.o=.depend)
17depends: $(DEPENDS)
18        @cat $(DEPENDS) | grep -v '^#' >>Makefile
19        @rm $(DEPENDS)
20$(DEPENDS): depend.init
21depend.init:
22        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
23.c.depend:
24        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
25.cxx.depend:
26        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
27
28# DO NOT DELETE THIS LINE -- make depend depends on it.
29
30# Do not add dependencies manually - use 'make depend' in $ARBHOME
31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
32
33ali_aligner.o: ali_aligner.hxx
34ali_aligner.o: ali_arbdb.hxx
35ali_aligner.o: ali_misc.hxx
36ali_aligner.o: ali_other_stuff.hxx
37ali_aligner.o: ali_pathmap.hxx
38ali_aligner.o: ali_profile.hxx
39ali_aligner.o: ali_pt.hxx
40ali_aligner.o: ali_sequence.hxx
41ali_aligner.o: ali_solution.hxx
42ali_aligner.o: ali_tarray.hxx
43ali_aligner.o: ali_tlist.hxx
44ali_aligner.o: ali_tstack.hxx
45ali_aligner.o: $(ARBHOME)/INCLUDE/ad_prot.h
46ali_aligner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
47ali_aligner.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
48ali_aligner.o: $(ARBHOME)/INCLUDE/aisc_global.h
49ali_aligner.o: $(ARBHOME)/INCLUDE/arb_assert.h
50ali_aligner.o: $(ARBHOME)/INCLUDE/arb_core.h
51ali_aligner.o: $(ARBHOME)/INCLUDE/arb_error.h
52ali_aligner.o: $(ARBHOME)/INCLUDE/arb_mem.h
53ali_aligner.o: $(ARBHOME)/INCLUDE/arb_msg.h
54ali_aligner.o: $(ARBHOME)/INCLUDE/arb_string.h
55ali_aligner.o: $(ARBHOME)/INCLUDE/arbdb.h
56ali_aligner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
57ali_aligner.o: $(ARBHOME)/INCLUDE/arbdbt.h
58ali_aligner.o: $(ARBHOME)/INCLUDE/arbtools.h
59ali_aligner.o: $(ARBHOME)/INCLUDE/attributes.h
60ali_aligner.o: $(ARBHOME)/INCLUDE/bytestring.h
61ali_aligner.o: $(ARBHOME)/INCLUDE/client.h
62ali_aligner.o: $(ARBHOME)/INCLUDE/client_types.h
63ali_aligner.o: $(ARBHOME)/INCLUDE/cxxforward.h
64ali_aligner.o: $(ARBHOME)/INCLUDE/downcast.h
65ali_aligner.o: $(ARBHOME)/INCLUDE/dupstr.h
66ali_aligner.o: $(ARBHOME)/INCLUDE/gccver.h
67ali_aligner.o: $(ARBHOME)/INCLUDE/PT_com.h
68ali_aligner.o: $(ARBHOME)/INCLUDE/server.h
69ali_aligner.o: $(ARBHOME)/INCLUDE/servercntrl.h
70ali_aligner.o: $(ARBHOME)/INCLUDE/smartptr.h
71ali_aligner.o: $(ARBHOME)/INCLUDE/static_assert.h
72ali_aligner.o: $(ARBHOME)/INCLUDE/test_global.h
73
74ali_arbdb.o: ali_arbdb.hxx
75ali_arbdb.o: ali_misc.hxx
76ali_arbdb.o: ali_other_stuff.hxx
77ali_arbdb.o: ali_sequence.hxx
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/aisc_global.h
82ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_assert.h
83ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_core.h
84ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_error.h
85ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_mem.h
86ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_msg.h
87ali_arbdb.o: $(ARBHOME)/INCLUDE/arb_string.h
88ali_arbdb.o: $(ARBHOME)/INCLUDE/arbdb.h
89ali_arbdb.o: $(ARBHOME)/INCLUDE/arbdb_base.h
90ali_arbdb.o: $(ARBHOME)/INCLUDE/arbdbt.h
91ali_arbdb.o: $(ARBHOME)/INCLUDE/arbtools.h
92ali_arbdb.o: $(ARBHOME)/INCLUDE/attributes.h
93ali_arbdb.o: $(ARBHOME)/INCLUDE/bytestring.h
94ali_arbdb.o: $(ARBHOME)/INCLUDE/cxxforward.h
95ali_arbdb.o: $(ARBHOME)/INCLUDE/downcast.h
96ali_arbdb.o: $(ARBHOME)/INCLUDE/dupstr.h
97ali_arbdb.o: $(ARBHOME)/INCLUDE/gccver.h
98ali_arbdb.o: $(ARBHOME)/INCLUDE/PT_com.h
99ali_arbdb.o: $(ARBHOME)/INCLUDE/server.h
100ali_arbdb.o: $(ARBHOME)/INCLUDE/servercntrl.h
101ali_arbdb.o: $(ARBHOME)/INCLUDE/smartptr.h
102ali_arbdb.o: $(ARBHOME)/INCLUDE/static_assert.h
103ali_arbdb.o: $(ARBHOME)/INCLUDE/test_global.h
104
105ali_global.o: ali_arbdb.hxx
106ali_global.o: ali_global.hxx
107ali_global.o: ali_misc.hxx
108ali_global.o: ali_other_stuff.hxx
109ali_global.o: ali_pathmap.hxx
110ali_global.o: ali_prealigner.hxx
111ali_global.o: ali_profile.hxx
112ali_global.o: ali_pt.hxx
113ali_global.o: ali_sequence.hxx
114ali_global.o: ali_solution.hxx
115ali_global.o: ali_tarray.hxx
116ali_global.o: ali_tlist.hxx
117ali_global.o: ali_tstack.hxx
118ali_global.o: $(ARBHOME)/INCLUDE/ad_prot.h
119ali_global.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
120ali_global.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
121ali_global.o: $(ARBHOME)/INCLUDE/aisc_global.h
122ali_global.o: $(ARBHOME)/INCLUDE/arb_assert.h
123ali_global.o: $(ARBHOME)/INCLUDE/arb_core.h
124ali_global.o: $(ARBHOME)/INCLUDE/arb_error.h
125ali_global.o: $(ARBHOME)/INCLUDE/arb_mem.h
126ali_global.o: $(ARBHOME)/INCLUDE/arb_msg.h
127ali_global.o: $(ARBHOME)/INCLUDE/arb_string.h
128ali_global.o: $(ARBHOME)/INCLUDE/arbdb.h
129ali_global.o: $(ARBHOME)/INCLUDE/arbdb_base.h
130ali_global.o: $(ARBHOME)/INCLUDE/arbdbt.h
131ali_global.o: $(ARBHOME)/INCLUDE/arbtools.h
132ali_global.o: $(ARBHOME)/INCLUDE/attributes.h
133ali_global.o: $(ARBHOME)/INCLUDE/bytestring.h
134ali_global.o: $(ARBHOME)/INCLUDE/client.h
135ali_global.o: $(ARBHOME)/INCLUDE/client_types.h
136ali_global.o: $(ARBHOME)/INCLUDE/cxxforward.h
137ali_global.o: $(ARBHOME)/INCLUDE/downcast.h
138ali_global.o: $(ARBHOME)/INCLUDE/dupstr.h
139ali_global.o: $(ARBHOME)/INCLUDE/gccver.h
140ali_global.o: $(ARBHOME)/INCLUDE/PT_com.h
141ali_global.o: $(ARBHOME)/INCLUDE/server.h
142ali_global.o: $(ARBHOME)/INCLUDE/servercntrl.h
143ali_global.o: $(ARBHOME)/INCLUDE/smartptr.h
144ali_global.o: $(ARBHOME)/INCLUDE/static_assert.h
145ali_global.o: $(ARBHOME)/INCLUDE/test_global.h
146
147ali_main.o: ali_arbdb.hxx
148ali_main.o: ali_global.hxx
149ali_main.o: ali_misc.hxx
150ali_main.o: ali_other_stuff.hxx
151ali_main.o: ali_pathmap.hxx
152ali_main.o: ali_prealigner.hxx
153ali_main.o: ali_profile.hxx
154ali_main.o: ali_pt.hxx
155ali_main.o: ali_sequence.hxx
156ali_main.o: ali_solution.hxx
157ali_main.o: ali_tarray.hxx
158ali_main.o: ali_tlist.hxx
159ali_main.o: ali_tstack.hxx
160ali_main.o: $(ARBHOME)/INCLUDE/ad_prot.h
161ali_main.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
162ali_main.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
163ali_main.o: $(ARBHOME)/INCLUDE/aisc_global.h
164ali_main.o: $(ARBHOME)/INCLUDE/arb_assert.h
165ali_main.o: $(ARBHOME)/INCLUDE/arb_core.h
166ali_main.o: $(ARBHOME)/INCLUDE/arb_error.h
167ali_main.o: $(ARBHOME)/INCLUDE/arb_mem.h
168ali_main.o: $(ARBHOME)/INCLUDE/arb_msg.h
169ali_main.o: $(ARBHOME)/INCLUDE/arb_string.h
170ali_main.o: $(ARBHOME)/INCLUDE/arbdb.h
171ali_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h
172ali_main.o: $(ARBHOME)/INCLUDE/arbdbt.h
173ali_main.o: $(ARBHOME)/INCLUDE/arbtools.h
174ali_main.o: $(ARBHOME)/INCLUDE/attributes.h
175ali_main.o: $(ARBHOME)/INCLUDE/bytestring.h
176ali_main.o: $(ARBHOME)/INCLUDE/client.h
177ali_main.o: $(ARBHOME)/INCLUDE/client_types.h
178ali_main.o: $(ARBHOME)/INCLUDE/cxxforward.h
179ali_main.o: $(ARBHOME)/INCLUDE/downcast.h
180ali_main.o: $(ARBHOME)/INCLUDE/dupstr.h
181ali_main.o: $(ARBHOME)/INCLUDE/gccver.h
182ali_main.o: $(ARBHOME)/INCLUDE/PT_com.h
183ali_main.o: $(ARBHOME)/INCLUDE/server.h
184ali_main.o: $(ARBHOME)/INCLUDE/servercntrl.h
185ali_main.o: $(ARBHOME)/INCLUDE/smartptr.h
186ali_main.o: $(ARBHOME)/INCLUDE/static_assert.h
187ali_main.o: $(ARBHOME)/INCLUDE/test_global.h
188
189ali_pathmap.o: ali_misc.hxx
190ali_pathmap.o: ali_pathmap.hxx
191ali_pathmap.o: ali_tarray.hxx
192ali_pathmap.o: ali_tlist.hxx
193ali_pathmap.o: $(ARBHOME)/INCLUDE/arbtools.h
194ali_pathmap.o: $(ARBHOME)/INCLUDE/attributes.h
195ali_pathmap.o: $(ARBHOME)/INCLUDE/cxxforward.h
196ali_pathmap.o: $(ARBHOME)/INCLUDE/gccver.h
197
198ali_prealigner.o: ali_aligner.hxx
199ali_prealigner.o: ali_arbdb.hxx
200ali_prealigner.o: ali_misc.hxx
201ali_prealigner.o: ali_other_stuff.hxx
202ali_prealigner.o: ali_pathmap.hxx
203ali_prealigner.o: ali_prealigner.hxx
204ali_prealigner.o: ali_profile.hxx
205ali_prealigner.o: ali_pt.hxx
206ali_prealigner.o: ali_sequence.hxx
207ali_prealigner.o: ali_solution.hxx
208ali_prealigner.o: ali_tarray.hxx
209ali_prealigner.o: ali_tlist.hxx
210ali_prealigner.o: ali_tstack.hxx
211ali_prealigner.o: $(ARBHOME)/INCLUDE/ad_prot.h
212ali_prealigner.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
213ali_prealigner.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
214ali_prealigner.o: $(ARBHOME)/INCLUDE/aisc_global.h
215ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_assert.h
216ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_core.h
217ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_error.h
218ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_mem.h
219ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_msg.h
220ali_prealigner.o: $(ARBHOME)/INCLUDE/arb_string.h
221ali_prealigner.o: $(ARBHOME)/INCLUDE/arbdb.h
222ali_prealigner.o: $(ARBHOME)/INCLUDE/arbdb_base.h
223ali_prealigner.o: $(ARBHOME)/INCLUDE/arbdbt.h
224ali_prealigner.o: $(ARBHOME)/INCLUDE/arbtools.h
225ali_prealigner.o: $(ARBHOME)/INCLUDE/attributes.h
226ali_prealigner.o: $(ARBHOME)/INCLUDE/bytestring.h
227ali_prealigner.o: $(ARBHOME)/INCLUDE/client.h
228ali_prealigner.o: $(ARBHOME)/INCLUDE/client_types.h
229ali_prealigner.o: $(ARBHOME)/INCLUDE/cxxforward.h
230ali_prealigner.o: $(ARBHOME)/INCLUDE/downcast.h
231ali_prealigner.o: $(ARBHOME)/INCLUDE/dupstr.h
232ali_prealigner.o: $(ARBHOME)/INCLUDE/gccver.h
233ali_prealigner.o: $(ARBHOME)/INCLUDE/PT_com.h
234ali_prealigner.o: $(ARBHOME)/INCLUDE/server.h
235ali_prealigner.o: $(ARBHOME)/INCLUDE/servercntrl.h
236ali_prealigner.o: $(ARBHOME)/INCLUDE/smartptr.h
237ali_prealigner.o: $(ARBHOME)/INCLUDE/static_assert.h
238ali_prealigner.o: $(ARBHOME)/INCLUDE/test_global.h
239
240ali_profile.o: ali_arbdb.hxx
241ali_profile.o: ali_misc.hxx
242ali_profile.o: ali_other_stuff.hxx
243ali_profile.o: ali_profile.hxx
244ali_profile.o: ali_pt.hxx
245ali_profile.o: ali_sequence.hxx
246ali_profile.o: ali_tlist.hxx
247ali_profile.o: $(ARBHOME)/INCLUDE/ad_prot.h
248ali_profile.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
249ali_profile.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
250ali_profile.o: $(ARBHOME)/INCLUDE/aisc_global.h
251ali_profile.o: $(ARBHOME)/INCLUDE/arb_assert.h
252ali_profile.o: $(ARBHOME)/INCLUDE/arb_core.h
253ali_profile.o: $(ARBHOME)/INCLUDE/arb_error.h
254ali_profile.o: $(ARBHOME)/INCLUDE/arb_mem.h
255ali_profile.o: $(ARBHOME)/INCLUDE/arb_msg.h
256ali_profile.o: $(ARBHOME)/INCLUDE/arb_string.h
257ali_profile.o: $(ARBHOME)/INCLUDE/arbdb.h
258ali_profile.o: $(ARBHOME)/INCLUDE/arbdb_base.h
259ali_profile.o: $(ARBHOME)/INCLUDE/arbdbt.h
260ali_profile.o: $(ARBHOME)/INCLUDE/arbtools.h
261ali_profile.o: $(ARBHOME)/INCLUDE/attributes.h
262ali_profile.o: $(ARBHOME)/INCLUDE/BI_helix.hxx
263ali_profile.o: $(ARBHOME)/INCLUDE/bytestring.h
264ali_profile.o: $(ARBHOME)/INCLUDE/client.h
265ali_profile.o: $(ARBHOME)/INCLUDE/client_types.h
266ali_profile.o: $(ARBHOME)/INCLUDE/cxxforward.h
267ali_profile.o: $(ARBHOME)/INCLUDE/downcast.h
268ali_profile.o: $(ARBHOME)/INCLUDE/dupstr.h
269ali_profile.o: $(ARBHOME)/INCLUDE/gccver.h
270ali_profile.o: $(ARBHOME)/INCLUDE/PT_com.h
271ali_profile.o: $(ARBHOME)/INCLUDE/server.h
272ali_profile.o: $(ARBHOME)/INCLUDE/servercntrl.h
273ali_profile.o: $(ARBHOME)/INCLUDE/smartptr.h
274ali_profile.o: $(ARBHOME)/INCLUDE/static_assert.h
275ali_profile.o: $(ARBHOME)/INCLUDE/test_global.h
276
277ali_pt.o: ali_misc.hxx
278ali_pt.o: ali_other_stuff.hxx
279ali_pt.o: ali_pt.hxx
280ali_pt.o: ali_sequence.hxx
281ali_pt.o: ali_tlist.hxx
282ali_pt.o: $(ARBHOME)/INCLUDE/ad_prot.h
283ali_pt.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
284ali_pt.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
285ali_pt.o: $(ARBHOME)/INCLUDE/aisc_global.h
286ali_pt.o: $(ARBHOME)/INCLUDE/arb_assert.h
287ali_pt.o: $(ARBHOME)/INCLUDE/arb_core.h
288ali_pt.o: $(ARBHOME)/INCLUDE/arb_error.h
289ali_pt.o: $(ARBHOME)/INCLUDE/arb_mem.h
290ali_pt.o: $(ARBHOME)/INCLUDE/arb_msg.h
291ali_pt.o: $(ARBHOME)/INCLUDE/arb_string.h
292ali_pt.o: $(ARBHOME)/INCLUDE/arbdb.h
293ali_pt.o: $(ARBHOME)/INCLUDE/arbdb_base.h
294ali_pt.o: $(ARBHOME)/INCLUDE/arbdbt.h
295ali_pt.o: $(ARBHOME)/INCLUDE/arbtools.h
296ali_pt.o: $(ARBHOME)/INCLUDE/attributes.h
297ali_pt.o: $(ARBHOME)/INCLUDE/bytestring.h
298ali_pt.o: $(ARBHOME)/INCLUDE/client.h
299ali_pt.o: $(ARBHOME)/INCLUDE/client_types.h
300ali_pt.o: $(ARBHOME)/INCLUDE/cxxforward.h
301ali_pt.o: $(ARBHOME)/INCLUDE/downcast.h
302ali_pt.o: $(ARBHOME)/INCLUDE/dupstr.h
303ali_pt.o: $(ARBHOME)/INCLUDE/gccver.h
304ali_pt.o: $(ARBHOME)/INCLUDE/PT_com.h
305ali_pt.o: $(ARBHOME)/INCLUDE/server.h
306ali_pt.o: $(ARBHOME)/INCLUDE/servercntrl.h
307ali_pt.o: $(ARBHOME)/INCLUDE/smartptr.h
308ali_pt.o: $(ARBHOME)/INCLUDE/static_assert.h
309ali_pt.o: $(ARBHOME)/INCLUDE/test_global.h
310
311ali_sequence.o: ali_misc.hxx
312ali_sequence.o: ali_sequence.hxx
313ali_sequence.o: $(ARBHOME)/INCLUDE/arb_assert.h
314ali_sequence.o: $(ARBHOME)/INCLUDE/arb_core.h
315ali_sequence.o: $(ARBHOME)/INCLUDE/arb_mem.h
316ali_sequence.o: $(ARBHOME)/INCLUDE/arb_string.h
317ali_sequence.o: $(ARBHOME)/INCLUDE/arbtools.h
318ali_sequence.o: $(ARBHOME)/INCLUDE/attributes.h
319ali_sequence.o: $(ARBHOME)/INCLUDE/cxxforward.h
320ali_sequence.o: $(ARBHOME)/INCLUDE/dupstr.h
321ali_sequence.o: $(ARBHOME)/INCLUDE/gccver.h
322ali_sequence.o: $(ARBHOME)/INCLUDE/test_global.h
323
324ali_solution.o: ali_arbdb.hxx
325ali_solution.o: ali_misc.hxx
326ali_solution.o: ali_other_stuff.hxx
327ali_solution.o: ali_profile.hxx
328ali_solution.o: ali_pt.hxx
329ali_solution.o: ali_sequence.hxx
330ali_solution.o: ali_solution.hxx
331ali_solution.o: ali_tlist.hxx
332ali_solution.o: $(ARBHOME)/INCLUDE/ad_prot.h
333ali_solution.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
334ali_solution.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
335ali_solution.o: $(ARBHOME)/INCLUDE/aisc_global.h
336ali_solution.o: $(ARBHOME)/INCLUDE/arb_assert.h
337ali_solution.o: $(ARBHOME)/INCLUDE/arb_core.h
338ali_solution.o: $(ARBHOME)/INCLUDE/arb_error.h
339ali_solution.o: $(ARBHOME)/INCLUDE/arb_mem.h
340ali_solution.o: $(ARBHOME)/INCLUDE/arb_msg.h
341ali_solution.o: $(ARBHOME)/INCLUDE/arb_string.h
342ali_solution.o: $(ARBHOME)/INCLUDE/arbdb.h
343ali_solution.o: $(ARBHOME)/INCLUDE/arbdb_base.h
344ali_solution.o: $(ARBHOME)/INCLUDE/arbdbt.h
345ali_solution.o: $(ARBHOME)/INCLUDE/arbtools.h
346ali_solution.o: $(ARBHOME)/INCLUDE/attributes.h
347ali_solution.o: $(ARBHOME)/INCLUDE/bytestring.h
348ali_solution.o: $(ARBHOME)/INCLUDE/client.h
349ali_solution.o: $(ARBHOME)/INCLUDE/client_types.h
350ali_solution.o: $(ARBHOME)/INCLUDE/cxxforward.h
351ali_solution.o: $(ARBHOME)/INCLUDE/downcast.h
352ali_solution.o: $(ARBHOME)/INCLUDE/dupstr.h
353ali_solution.o: $(ARBHOME)/INCLUDE/gccver.h
354ali_solution.o: $(ARBHOME)/INCLUDE/PT_com.h
355ali_solution.o: $(ARBHOME)/INCLUDE/server.h
356ali_solution.o: $(ARBHOME)/INCLUDE/servercntrl.h
357ali_solution.o: $(ARBHOME)/INCLUDE/smartptr.h
358ali_solution.o: $(ARBHOME)/INCLUDE/static_assert.h
359ali_solution.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the repository browser.