1 | # for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt |
---|
2 | |
---|
3 | .SUFFIXES: .o .c .cxx .depend |
---|
4 | |
---|
5 | C_OBJECTS = |
---|
6 | CPP_OBJECTS = \ |
---|
7 | seq_export.o \ |
---|
8 | seqio.o \ |
---|
9 | |
---|
10 | OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS) |
---|
11 | |
---|
12 | $(MAIN): $(OBJECTS) |
---|
13 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
14 | |
---|
15 | .cxx.o: |
---|
16 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
17 | |
---|
18 | .c.o: |
---|
19 | $(A_CC) $(cflags) -c $< $(CC_INCLUDES) $(POST_COMPILE) $< |
---|
20 | |
---|
21 | clean: |
---|
22 | rm -f $(OBJECTS) *.a |
---|
23 | |
---|
24 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
25 | depends: $(DEPENDS) |
---|
26 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
27 | @rm $(DEPENDS) |
---|
28 | $(DEPENDS): depend.init |
---|
29 | depend.init: |
---|
30 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
31 | .c.depend: |
---|
32 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
33 | .cxx.depend: |
---|
34 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
35 | |
---|
36 | # DO NOT DELETE |
---|
37 | |
---|
38 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
39 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL) |
---|
40 | |
---|
41 | seq_export.o: seqio.hxx |
---|
42 | seq_export.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
43 | seq_export.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
44 | seq_export.o: $(ARBHOME)/INCLUDE/AP_filter.hxx |
---|
45 | seq_export.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
46 | seq_export.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
47 | seq_export.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
48 | seq_export.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
49 | seq_export.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
50 | seq_export.o: $(ARBHOME)/INCLUDE/arb_global_defs.h |
---|
51 | seq_export.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
52 | seq_export.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
53 | seq_export.o: $(ARBHOME)/INCLUDE/arb_progress.h |
---|
54 | seq_export.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
55 | seq_export.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
56 | seq_export.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
57 | seq_export.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
58 | seq_export.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
59 | seq_export.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
60 | seq_export.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
61 | seq_export.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
62 | seq_export.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
63 | seq_export.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
64 | seq_export.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
65 | seq_export.o: $(ARBHOME)/INCLUDE/ErrorOrType.h |
---|
66 | seq_export.o: $(ARBHOME)/INCLUDE/gb_aci.h |
---|
67 | seq_export.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
68 | seq_export.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
69 | seq_export.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
70 | seq_export.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
71 | seq_export.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
72 | seq_export.o: $(ARBHOME)/INCLUDE/xferset.h |
---|
73 | seq_export.o: $(ARBHOME)/INCLUDE/xml.hxx |
---|
74 | |
---|
75 | seqio.o: seqio.hxx |
---|
76 | seqio.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
77 | seqio.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
78 | seqio.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
79 | seqio.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
80 | seqio.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
81 | seqio.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
82 | seqio.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
83 | seqio.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
84 | seqio.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
85 | seqio.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
86 | seqio.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
87 | seqio.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
88 | seqio.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
89 | seqio.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
90 | seqio.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
91 | seqio.o: $(ARBHOME)/INCLUDE/test_global.h |
---|