1 | # for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt |
---|
2 | |
---|
3 | .SUFFIXES: .o .cxx .depend |
---|
4 | |
---|
5 | # -------------------------------------------------------------------------------- |
---|
6 | |
---|
7 | # objects for library |
---|
8 | OBJECTS=$(subst .cxx,.o,$(wildcard *.cxx)) |
---|
9 | |
---|
10 | # -------------------------------------------------------------------------------- |
---|
11 | |
---|
12 | $(MAIN): $(OBJECTS) |
---|
13 | @$(ARBHOME)/SOURCE_TOOLS/binuptodate.pl $(MAIN) $(OBJECTS) || ( \ |
---|
14 | echo "$(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)"; \ |
---|
15 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) ; \ |
---|
16 | ) |
---|
17 | |
---|
18 | .cxx.o: |
---|
19 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
20 | |
---|
21 | clean: |
---|
22 | -rm -f *.[ao] *.bak *~ |
---|
23 | |
---|
24 | #.IGNORE: |
---|
25 | # clean |
---|
26 | |
---|
27 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
28 | depends: $(DEPENDS) |
---|
29 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
30 | @rm $(DEPENDS) |
---|
31 | $(DEPENDS): depend.init |
---|
32 | depend.init: |
---|
33 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
34 | .cxx.depend: |
---|
35 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
36 | |
---|
37 | # DO NOT DELETE |
---|
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 | |
---|
42 | DBwriter.o: DBwriter.h |
---|
43 | DBwriter.o: defs.h |
---|
44 | DBwriter.o: Feature.h |
---|
45 | DBwriter.o: GenomeImport.h |
---|
46 | DBwriter.o: Importer.h |
---|
47 | DBwriter.o: MetaInfo.h |
---|
48 | DBwriter.o: MetaTag.h |
---|
49 | DBwriter.o: SequenceBuffer.h |
---|
50 | DBwriter.o: types.h |
---|
51 | DBwriter.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
52 | DBwriter.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
53 | DBwriter.o: $(ARBHOME)/INCLUDE/adGene.h |
---|
54 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
55 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
56 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
57 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
58 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
59 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_stdstr.h |
---|
60 | DBwriter.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
61 | DBwriter.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
62 | DBwriter.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
63 | DBwriter.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
64 | DBwriter.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
65 | DBwriter.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
66 | DBwriter.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
67 | DBwriter.o: $(ARBHOME)/INCLUDE/aw_question.hxx |
---|
68 | DBwriter.o: $(ARBHOME)/INCLUDE/AW_rename.hxx |
---|
69 | DBwriter.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
---|
70 | DBwriter.o: $(ARBHOME)/INCLUDE/cb.h |
---|
71 | DBwriter.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
72 | DBwriter.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
73 | DBwriter.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
74 | DBwriter.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
75 | DBwriter.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
76 | DBwriter.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
77 | DBwriter.o: $(ARBHOME)/INCLUDE/GEN.hxx |
---|
78 | DBwriter.o: $(ARBHOME)/INCLUDE/items.h |
---|
79 | DBwriter.o: $(ARBHOME)/INCLUDE/Location.h |
---|
80 | DBwriter.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
81 | DBwriter.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
82 | DBwriter.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
83 | DBwriter.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
84 | DBwriter.o: $(ARBHOME)/INCLUDE/Translate.hxx |
---|
85 | DBwriter.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
86 | |
---|
87 | Feature.o: defs.h |
---|
88 | Feature.o: Feature.h |
---|
89 | Feature.o: types.h |
---|
90 | Feature.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
91 | Feature.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
92 | Feature.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
93 | Feature.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
94 | Feature.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
95 | Feature.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
96 | Feature.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
97 | Feature.o: $(ARBHOME)/INCLUDE/Location.h |
---|
98 | Feature.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
99 | Feature.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
100 | |
---|
101 | GenomeImport.o: DBwriter.h |
---|
102 | GenomeImport.o: defs.h |
---|
103 | GenomeImport.o: Feature.h |
---|
104 | GenomeImport.o: GenomeImport.h |
---|
105 | GenomeImport.o: Importer.h |
---|
106 | GenomeImport.o: MetaInfo.h |
---|
107 | GenomeImport.o: MetaTag.h |
---|
108 | GenomeImport.o: SequenceBuffer.h |
---|
109 | GenomeImport.o: tools.h |
---|
110 | GenomeImport.o: types.h |
---|
111 | GenomeImport.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
112 | GenomeImport.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
113 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
114 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
115 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
116 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
117 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
118 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
119 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
120 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_stdstr.h |
---|
121 | GenomeImport.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
122 | GenomeImport.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
123 | GenomeImport.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
124 | GenomeImport.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
125 | GenomeImport.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
126 | GenomeImport.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
127 | GenomeImport.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
128 | GenomeImport.o: $(ARBHOME)/INCLUDE/aw_question.hxx |
---|
129 | GenomeImport.o: $(ARBHOME)/INCLUDE/AW_rename.hxx |
---|
130 | GenomeImport.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
---|
131 | GenomeImport.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
132 | GenomeImport.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
133 | GenomeImport.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
134 | GenomeImport.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
135 | GenomeImport.o: $(ARBHOME)/INCLUDE/Location.h |
---|
136 | GenomeImport.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
137 | GenomeImport.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
138 | GenomeImport.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
139 | GenomeImport.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
140 | GenomeImport.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
141 | |
---|
142 | Importer.o: DBwriter.h |
---|
143 | Importer.o: defs.h |
---|
144 | Importer.o: Feature.h |
---|
145 | Importer.o: GenomeImport.h |
---|
146 | Importer.o: Importer.h |
---|
147 | Importer.o: MetaInfo.h |
---|
148 | Importer.o: MetaTag.h |
---|
149 | Importer.o: SequenceBuffer.h |
---|
150 | Importer.o: tools.h |
---|
151 | Importer.o: types.h |
---|
152 | Importer.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
153 | Importer.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
154 | Importer.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
155 | Importer.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
156 | Importer.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
157 | Importer.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
158 | Importer.o: $(ARBHOME)/INCLUDE/arb_stdstr.h |
---|
159 | Importer.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
160 | Importer.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
161 | Importer.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
162 | Importer.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
163 | Importer.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
164 | Importer.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
---|
165 | Importer.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
166 | Importer.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
167 | Importer.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
168 | Importer.o: $(ARBHOME)/INCLUDE/Location.h |
---|
169 | Importer.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
170 | Importer.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
171 | |
---|
172 | MetaInfo.o: defs.h |
---|
173 | MetaInfo.o: MetaInfo.h |
---|
174 | MetaInfo.o: MetaTag.h |
---|
175 | MetaInfo.o: types.h |
---|
176 | MetaInfo.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
177 | MetaInfo.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
178 | MetaInfo.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
179 | MetaInfo.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
180 | MetaInfo.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
181 | MetaInfo.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
182 | MetaInfo.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
183 | MetaInfo.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
184 | MetaInfo.o: $(ARBHOME)/INCLUDE/RegExpr.hxx |
---|
185 | MetaInfo.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
186 | |
---|
187 | SequenceBuffer.o: defs.h |
---|
188 | SequenceBuffer.o: SequenceBuffer.h |
---|
189 | SequenceBuffer.o: types.h |
---|
190 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
191 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
192 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
193 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
194 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
195 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
196 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
197 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
198 | SequenceBuffer.o: $(ARBHOME)/INCLUDE/test_global.h |
---|