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 = BI_helix.o BI_basepos.o |
---|
7 | OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS) |
---|
8 | |
---|
9 | $(MAIN): $(OBJECTS) |
---|
10 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
11 | |
---|
12 | .cxx.o: |
---|
13 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) |
---|
14 | |
---|
15 | .c.o: |
---|
16 | $(A_CC) $(cflags) -c $< $(CC_INCLUDES) $(POST_COMPILE) |
---|
17 | |
---|
18 | clean: |
---|
19 | rm -f $(OBJECTS) *.a |
---|
20 | |
---|
21 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
22 | depends: $(DEPENDS) |
---|
23 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
24 | @rm $(DEPENDS) |
---|
25 | $(DEPENDS): depend.init |
---|
26 | depend.init: |
---|
27 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
28 | .c.depend: |
---|
29 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
30 | .cxx.depend: |
---|
31 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
32 | |
---|
33 | # DO NOT DELETE |
---|
34 | |
---|
35 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
36 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL) |
---|
37 | |
---|
38 | BI_basepos.o: BI_basepos.hxx |
---|
39 | BI_basepos.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
40 | BI_basepos.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
41 | BI_basepos.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
42 | BI_basepos.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
43 | BI_basepos.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
44 | BI_basepos.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
45 | BI_basepos.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
46 | BI_basepos.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
47 | BI_basepos.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
48 | BI_basepos.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
49 | BI_basepos.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
50 | BI_basepos.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
51 | BI_basepos.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
52 | BI_basepos.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
53 | BI_basepos.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
54 | BI_basepos.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
55 | BI_basepos.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
56 | BI_basepos.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
57 | BI_basepos.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
58 | |
---|
59 | BI_helix.o: BI_helix.hxx |
---|
60 | BI_helix.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
61 | BI_helix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
62 | BI_helix.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
63 | BI_helix.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
64 | BI_helix.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
65 | BI_helix.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
66 | BI_helix.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
67 | BI_helix.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
68 | BI_helix.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
69 | BI_helix.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
70 | BI_helix.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
71 | BI_helix.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
72 | BI_helix.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
73 | BI_helix.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
74 | BI_helix.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
75 | BI_helix.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
76 | BI_helix.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
77 | BI_helix.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
78 | BI_helix.o: $(ARBHOME)/INCLUDE/test_global.h |
---|