1 | # for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt |
---|
2 | |
---|
3 | .SUFFIXES: .o .cxx .depend |
---|
4 | |
---|
5 | OBJECTS = $(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 | |
---|
13 | clean: |
---|
14 | rm -f $(OBJECTS) *.a |
---|
15 | |
---|
16 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
17 | depends: $(DEPENDS) |
---|
18 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
19 | @rm $(DEPENDS) |
---|
20 | $(DEPENDS): depend.init |
---|
21 | depend.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 | |
---|
33 | ARB_Tree.o: ARB_Tree.hxx |
---|
34 | ARB_Tree.o: $(ARBHOME)/INCLUDE/ad_cb.h |
---|
35 | ARB_Tree.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h |
---|
36 | ARB_Tree.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
37 | ARB_Tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
38 | ARB_Tree.o: $(ARBHOME)/INCLUDE/AliView.hxx |
---|
39 | ARB_Tree.o: $(ARBHOME)/INCLUDE/AP_filter.hxx |
---|
40 | ARB_Tree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx |
---|
41 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
42 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
43 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
44 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
45 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
46 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
47 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
48 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
49 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
50 | ARB_Tree.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
51 | ARB_Tree.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
52 | ARB_Tree.o: $(ARBHOME)/INCLUDE/cb.h |
---|
53 | ARB_Tree.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
54 | ARB_Tree.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
55 | ARB_Tree.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
56 | ARB_Tree.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
57 | ARB_Tree.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
58 | ARB_Tree.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
59 | ARB_Tree.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
60 | ARB_Tree.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
61 | ARB_Tree.o: $(ARBHOME)/INCLUDE/stringize.h |
---|
62 | ARB_Tree.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
63 | ARB_Tree.o: $(ARBHOME)/INCLUDE/TreeNode.h |
---|
64 | ARB_Tree.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|