source: branches/stable/SL/AP_TREE/Makefile

Last change on this file was 17428, checked in by westram, 5 years ago
  • partial merge from 'svalues' into 'trunk'
    • root branches always need to have identical remarks (associated with the root-edge)
      • condition previously implicit, now hardened by tests/assertions/…
      • fixed several bugs that violated this condition
  • adds: log:branches/svalues@17420:17427
File size: 3.7 KB
Line 
1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .c .cxx .depend
4
5C_OBJECTS = 
6CPP_OBJECTS = $(subst .cxx,.o,$(wildcard *.cxx))
7OBJECTS=$(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
18clean:
19        rm -f $(OBJECTS) *.a
20
21DEPENDS = $(OBJECTS:.o=.depend)
22depends: $(DEPENDS)
23        @cat $(DEPENDS) | grep -v '^#' >>Makefile
24        @rm $(DEPENDS)
25$(DEPENDS): depend.init
26depend.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
38AP_Tree.o: AP_Tree.hxx
39AP_Tree.o: AP_TreeColors.hxx
40AP_Tree.o: AP_TreeShader.hxx
41AP_Tree.o: $(ARBHOME)/INCLUDE/ad_cb.h
42AP_Tree.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
43AP_Tree.o: $(ARBHOME)/INCLUDE/ad_colorset.h
44AP_Tree.o: $(ARBHOME)/INCLUDE/ad_prot.h
45AP_Tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
46AP_Tree.o: $(ARBHOME)/INCLUDE/AliView.hxx
47AP_Tree.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
48AP_Tree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
49AP_Tree.o: $(ARBHOME)/INCLUDE/arb_assert.h
50AP_Tree.o: $(ARBHOME)/INCLUDE/arb_core.h
51AP_Tree.o: $(ARBHOME)/INCLUDE/arb_error.h
52AP_Tree.o: $(ARBHOME)/INCLUDE/arb_mem.h
53AP_Tree.o: $(ARBHOME)/INCLUDE/arb_msg.h
54AP_Tree.o: $(ARBHOME)/INCLUDE/arb_progress.h
55AP_Tree.o: $(ARBHOME)/INCLUDE/arb_str.h
56AP_Tree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
57AP_Tree.o: $(ARBHOME)/INCLUDE/arb_string.h
58AP_Tree.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
59AP_Tree.o: $(ARBHOME)/INCLUDE/arbdb.h
60AP_Tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
61AP_Tree.o: $(ARBHOME)/INCLUDE/arbdbt.h
62AP_Tree.o: $(ARBHOME)/INCLUDE/arbtools.h
63AP_Tree.o: $(ARBHOME)/INCLUDE/attributes.h
64AP_Tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx
65AP_Tree.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
66AP_Tree.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
67AP_Tree.o: $(ARBHOME)/INCLUDE/cb.h
68AP_Tree.o: $(ARBHOME)/INCLUDE/cb_base.h
69AP_Tree.o: $(ARBHOME)/INCLUDE/cbtypes.h
70AP_Tree.o: $(ARBHOME)/INCLUDE/cxxforward.h
71AP_Tree.o: $(ARBHOME)/INCLUDE/downcast.h
72AP_Tree.o: $(ARBHOME)/INCLUDE/dupstr.h
73AP_Tree.o: $(ARBHOME)/INCLUDE/gccver.h
74AP_Tree.o: $(ARBHOME)/INCLUDE/item_shader.h
75AP_Tree.o: $(ARBHOME)/INCLUDE/items.h
76AP_Tree.o: $(ARBHOME)/INCLUDE/smartptr.h
77AP_Tree.o: $(ARBHOME)/INCLUDE/static_assert.h
78AP_Tree.o: $(ARBHOME)/INCLUDE/test_global.h
79AP_Tree.o: $(ARBHOME)/INCLUDE/TreeNode.h
80AP_Tree.o: $(ARBHOME)/INCLUDE/ttypes.h
81
82AP_TreeSet.o: AP_Tree.hxx
83AP_TreeSet.o: AP_TreeSet.hxx
84AP_TreeSet.o: $(ARBHOME)/INCLUDE/ad_prot.h
85AP_TreeSet.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
86AP_TreeSet.o: $(ARBHOME)/INCLUDE/AliView.hxx
87AP_TreeSet.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
88AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_assert.h
89AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_core.h
90AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_error.h
91AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_mem.h
92AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_msg.h
93AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_string.h
94AP_TreeSet.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
95AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbdb.h
96AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbdb_base.h
97AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbdbt.h
98AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbtools.h
99AP_TreeSet.o: $(ARBHOME)/INCLUDE/attributes.h
100AP_TreeSet.o: $(ARBHOME)/INCLUDE/cxxforward.h
101AP_TreeSet.o: $(ARBHOME)/INCLUDE/downcast.h
102AP_TreeSet.o: $(ARBHOME)/INCLUDE/dupstr.h
103AP_TreeSet.o: $(ARBHOME)/INCLUDE/gccver.h
104AP_TreeSet.o: $(ARBHOME)/INCLUDE/smartptr.h
105AP_TreeSet.o: $(ARBHOME)/INCLUDE/static_assert.h
106AP_TreeSet.o: $(ARBHOME)/INCLUDE/test_global.h
107AP_TreeSet.o: $(ARBHOME)/INCLUDE/TreeNode.h
Note: See TracBrowser for help on using the repository browser.