source: trunk/SL/AP_TREE/Makefile

Last change on this file was 18959, checked in by westram, 3 years ago
File size: 3.7 KB
Line 
1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
2
3.SUFFIXES: .o .cxx .depend
4
5OBJECTS = $(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
13clean:
14        rm -f $(OBJECTS) *.a
15
16DEPENDS = $(OBJECTS:.o=.depend)
17depends: $(DEPENDS)
18        @cat $(DEPENDS) | grep -v '^#' >>Makefile
19        @rm $(DEPENDS)
20$(DEPENDS): depend.init
21depend.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
33AP_Tree.o: AP_Tree.hxx
34AP_Tree.o: AP_TreeColors.hxx
35AP_Tree.o: AP_TreeShader.hxx
36AP_Tree.o: $(ARBHOME)/INCLUDE/ad_cb.h
37AP_Tree.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h
38AP_Tree.o: $(ARBHOME)/INCLUDE/ad_colorset.h
39AP_Tree.o: $(ARBHOME)/INCLUDE/ad_prot.h
40AP_Tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
41AP_Tree.o: $(ARBHOME)/INCLUDE/AliView.hxx
42AP_Tree.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
43AP_Tree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
44AP_Tree.o: $(ARBHOME)/INCLUDE/arb_assert.h
45AP_Tree.o: $(ARBHOME)/INCLUDE/arb_core.h
46AP_Tree.o: $(ARBHOME)/INCLUDE/arb_error.h
47AP_Tree.o: $(ARBHOME)/INCLUDE/arb_mem.h
48AP_Tree.o: $(ARBHOME)/INCLUDE/arb_msg.h
49AP_Tree.o: $(ARBHOME)/INCLUDE/arb_progress.h
50AP_Tree.o: $(ARBHOME)/INCLUDE/arb_str.h
51AP_Tree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
52AP_Tree.o: $(ARBHOME)/INCLUDE/arb_string.h
53AP_Tree.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
54AP_Tree.o: $(ARBHOME)/INCLUDE/arbdb.h
55AP_Tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
56AP_Tree.o: $(ARBHOME)/INCLUDE/arbdbt.h
57AP_Tree.o: $(ARBHOME)/INCLUDE/arbtools.h
58AP_Tree.o: $(ARBHOME)/INCLUDE/attributes.h
59AP_Tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx
60AP_Tree.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
61AP_Tree.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
62AP_Tree.o: $(ARBHOME)/INCLUDE/cb.h
63AP_Tree.o: $(ARBHOME)/INCLUDE/cb_base.h
64AP_Tree.o: $(ARBHOME)/INCLUDE/cbtypes.h
65AP_Tree.o: $(ARBHOME)/INCLUDE/cxxforward.h
66AP_Tree.o: $(ARBHOME)/INCLUDE/downcast.h
67AP_Tree.o: $(ARBHOME)/INCLUDE/dupstr.h
68AP_Tree.o: $(ARBHOME)/INCLUDE/gccver.h
69AP_Tree.o: $(ARBHOME)/INCLUDE/item_shader.h
70AP_Tree.o: $(ARBHOME)/INCLUDE/items.h
71AP_Tree.o: $(ARBHOME)/INCLUDE/smartptr.h
72AP_Tree.o: $(ARBHOME)/INCLUDE/static_assert.h
73AP_Tree.o: $(ARBHOME)/INCLUDE/stringize.h
74AP_Tree.o: $(ARBHOME)/INCLUDE/test_global.h
75AP_Tree.o: $(ARBHOME)/INCLUDE/TreeNode.h
76AP_Tree.o: $(ARBHOME)/INCLUDE/ttypes.h
77
78AP_TreeSet.o: AP_Tree.hxx
79AP_TreeSet.o: AP_TreeSet.hxx
80AP_TreeSet.o: $(ARBHOME)/INCLUDE/ad_prot.h
81AP_TreeSet.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
82AP_TreeSet.o: $(ARBHOME)/INCLUDE/AliView.hxx
83AP_TreeSet.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
84AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_assert.h
85AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_core.h
86AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_error.h
87AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_mem.h
88AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_msg.h
89AP_TreeSet.o: $(ARBHOME)/INCLUDE/arb_string.h
90AP_TreeSet.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
91AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbdb.h
92AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbdb_base.h
93AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbdbt.h
94AP_TreeSet.o: $(ARBHOME)/INCLUDE/arbtools.h
95AP_TreeSet.o: $(ARBHOME)/INCLUDE/attributes.h
96AP_TreeSet.o: $(ARBHOME)/INCLUDE/cxxforward.h
97AP_TreeSet.o: $(ARBHOME)/INCLUDE/downcast.h
98AP_TreeSet.o: $(ARBHOME)/INCLUDE/dupstr.h
99AP_TreeSet.o: $(ARBHOME)/INCLUDE/gccver.h
100AP_TreeSet.o: $(ARBHOME)/INCLUDE/smartptr.h
101AP_TreeSet.o: $(ARBHOME)/INCLUDE/static_assert.h
102AP_TreeSet.o: $(ARBHOME)/INCLUDE/stringize.h
103AP_TreeSet.o: $(ARBHOME)/INCLUDE/test_global.h
104AP_TreeSet.o: $(ARBHOME)/INCLUDE/TreeNode.h
Note: See TracBrowser for help on using the repository browser.