source: trunk/SL/SEQIO/Makefile

Last change on this file was 18959, checked in by westram, 3 years ago
File size: 2.9 KB
Line 
1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .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 $< $(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
29
30# Do not add dependencies manually - use 'make depend' in $ARBHOME
31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL)
32
33seq_export.o: seqio.hxx
34seq_export.o: $(ARBHOME)/INCLUDE/ad_prot.h
35seq_export.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
36seq_export.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
37seq_export.o: $(ARBHOME)/INCLUDE/arb_assert.h
38seq_export.o: $(ARBHOME)/INCLUDE/arb_core.h
39seq_export.o: $(ARBHOME)/INCLUDE/arb_diff.h
40seq_export.o: $(ARBHOME)/INCLUDE/arb_error.h
41seq_export.o: $(ARBHOME)/INCLUDE/arb_file.h
42seq_export.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
43seq_export.o: $(ARBHOME)/INCLUDE/arb_mem.h
44seq_export.o: $(ARBHOME)/INCLUDE/arb_msg.h
45seq_export.o: $(ARBHOME)/INCLUDE/arb_progress.h
46seq_export.o: $(ARBHOME)/INCLUDE/arb_str.h
47seq_export.o: $(ARBHOME)/INCLUDE/arb_strarray.h
48seq_export.o: $(ARBHOME)/INCLUDE/arb_string.h
49seq_export.o: $(ARBHOME)/INCLUDE/arbdb.h
50seq_export.o: $(ARBHOME)/INCLUDE/arbdb_base.h
51seq_export.o: $(ARBHOME)/INCLUDE/arbdbt.h
52seq_export.o: $(ARBHOME)/INCLUDE/arbtools.h
53seq_export.o: $(ARBHOME)/INCLUDE/attributes.h
54seq_export.o: $(ARBHOME)/INCLUDE/cxxforward.h
55seq_export.o: $(ARBHOME)/INCLUDE/downcast.h
56seq_export.o: $(ARBHOME)/INCLUDE/dupstr.h
57seq_export.o: $(ARBHOME)/INCLUDE/ErrorOrType.h
58seq_export.o: $(ARBHOME)/INCLUDE/gb_aci.h
59seq_export.o: $(ARBHOME)/INCLUDE/gccver.h
60seq_export.o: $(ARBHOME)/INCLUDE/smartptr.h
61seq_export.o: $(ARBHOME)/INCLUDE/static_assert.h
62seq_export.o: $(ARBHOME)/INCLUDE/stringize.h
63seq_export.o: $(ARBHOME)/INCLUDE/test_global.h
64seq_export.o: $(ARBHOME)/INCLUDE/test_unit.h
65seq_export.o: $(ARBHOME)/INCLUDE/xferset.h
66seq_export.o: $(ARBHOME)/INCLUDE/xml.hxx
67
68seqio.o: seqio.hxx
69seqio.o: $(ARBHOME)/INCLUDE/ad_prot.h
70seqio.o: $(ARBHOME)/INCLUDE/arb_assert.h
71seqio.o: $(ARBHOME)/INCLUDE/arb_core.h
72seqio.o: $(ARBHOME)/INCLUDE/arb_error.h
73seqio.o: $(ARBHOME)/INCLUDE/arb_mem.h
74seqio.o: $(ARBHOME)/INCLUDE/arb_msg.h
75seqio.o: $(ARBHOME)/INCLUDE/arb_string.h
76seqio.o: $(ARBHOME)/INCLUDE/arbdb.h
77seqio.o: $(ARBHOME)/INCLUDE/arbdb_base.h
78seqio.o: $(ARBHOME)/INCLUDE/arbtools.h
79seqio.o: $(ARBHOME)/INCLUDE/attributes.h
80seqio.o: $(ARBHOME)/INCLUDE/cxxforward.h
81seqio.o: $(ARBHOME)/INCLUDE/dupstr.h
82seqio.o: $(ARBHOME)/INCLUDE/gccver.h
83seqio.o: $(ARBHOME)/INCLUDE/smartptr.h
84seqio.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the repository browser.