root/trunk/CONSENSUS_TREE/Makefile

Revision 8505, 5.4 KB (checked in by westram, 2 months ago)
  • replaced hash+list by set+vector
  • weight parts via ctor
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1.SUFFIXES: .o .cxx .depend
2
3OBJS = CT_part.o CT_hash.o CT_ntree.o CT_rbtree.o CT_dtree.o CT_ctree.o CT_mem.o
4
5$(MAIN): $(OBJS)
6        $(LINK_STATIC_LIB) $(MAIN) $(OBJS)
7
8.cxx.o:
9        $(CPP) $(cflags) -c $< $(CPPINCLUDES) $(POST_COMPILE)
10clean:
11        rm -f $(OBJS) *.a
12
13DEPENDS = $(OBJS:.o=.depend)
14depends: $(DEPENDS)
15        @cat $(DEPENDS) | grep -v '^#' >>Makefile
16        @rm $(DEPENDS)
17$(DEPENDS): depend.init
18depend.init:
19        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
20.c.depend:
21        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
22.cxx.depend:
23        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
24
25# DO NOT DELETE THIS LINE -- make depend depends on it.
26
27# Do not add dependencies manually - use 'make depend' in $ARBHOME
28# For formatting issues see SOURCE_TOOLS/fix_depends.pl
29
30CT_ctree.o: CT_ctree.hxx
31CT_ctree.o: CT_def.hxx
32CT_ctree.o: CT_hash.hxx
33CT_ctree.o: CT_mem.hxx
34CT_ctree.o: CT_ntree.hxx
35CT_ctree.o: CT_part.hxx
36CT_ctree.o: $(ARBHOME)/INCLUDE/ad_prot.h
37CT_ctree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
38CT_ctree.o: $(ARBHOME)/INCLUDE/arb_assert.h
39CT_ctree.o: $(ARBHOME)/INCLUDE/arb_core.h
40CT_ctree.o: $(ARBHOME)/INCLUDE/arb_error.h
41CT_ctree.o: $(ARBHOME)/INCLUDE/arb_msg.h
42CT_ctree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
43CT_ctree.o: $(ARBHOME)/INCLUDE/arb_string.h
44CT_ctree.o: $(ARBHOME)/INCLUDE/arbdb.h
45CT_ctree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
46CT_ctree.o: $(ARBHOME)/INCLUDE/arbdbt.h
47CT_ctree.o: $(ARBHOME)/INCLUDE/arbtools.h
48CT_ctree.o: $(ARBHOME)/INCLUDE/attributes.h
49CT_ctree.o: $(ARBHOME)/INCLUDE/dupstr.h
50CT_ctree.o: $(ARBHOME)/INCLUDE/smartptr.h
51CT_ctree.o: $(ARBHOME)/INCLUDE/test_global.h
52
53CT_dtree.o: CT_ctree.hxx
54CT_dtree.o: CT_def.hxx
55CT_dtree.o: CT_hash.hxx
56CT_dtree.o: CT_mem.hxx
57CT_dtree.o: CT_part.hxx
58CT_dtree.o: $(ARBHOME)/INCLUDE/ad_prot.h
59CT_dtree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
60CT_dtree.o: $(ARBHOME)/INCLUDE/arb_assert.h
61CT_dtree.o: $(ARBHOME)/INCLUDE/arb_core.h
62CT_dtree.o: $(ARBHOME)/INCLUDE/arb_error.h
63CT_dtree.o: $(ARBHOME)/INCLUDE/arb_msg.h
64CT_dtree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
65CT_dtree.o: $(ARBHOME)/INCLUDE/arb_string.h
66CT_dtree.o: $(ARBHOME)/INCLUDE/arbdb.h
67CT_dtree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
68CT_dtree.o: $(ARBHOME)/INCLUDE/arbdbt.h
69CT_dtree.o: $(ARBHOME)/INCLUDE/arbtools.h
70CT_dtree.o: $(ARBHOME)/INCLUDE/attributes.h
71CT_dtree.o: $(ARBHOME)/INCLUDE/dupstr.h
72CT_dtree.o: $(ARBHOME)/INCLUDE/smartptr.h
73CT_dtree.o: $(ARBHOME)/INCLUDE/test_global.h
74
75CT_hash.o: CT_ctree.hxx
76CT_hash.o: CT_def.hxx
77CT_hash.o: CT_hash.hxx
78CT_hash.o: CT_mem.hxx
79CT_hash.o: CT_ntree.hxx
80CT_hash.o: CT_part.hxx
81CT_hash.o: $(ARBHOME)/INCLUDE/ad_prot.h
82CT_hash.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
83CT_hash.o: $(ARBHOME)/INCLUDE/arb_assert.h
84CT_hash.o: $(ARBHOME)/INCLUDE/arb_core.h
85CT_hash.o: $(ARBHOME)/INCLUDE/arb_error.h
86CT_hash.o: $(ARBHOME)/INCLUDE/arb_msg.h
87CT_hash.o: $(ARBHOME)/INCLUDE/arb_sort.h
88CT_hash.o: $(ARBHOME)/INCLUDE/arb_strarray.h
89CT_hash.o: $(ARBHOME)/INCLUDE/arb_string.h
90CT_hash.o: $(ARBHOME)/INCLUDE/arbdb.h
91CT_hash.o: $(ARBHOME)/INCLUDE/arbdb_base.h
92CT_hash.o: $(ARBHOME)/INCLUDE/arbdbt.h
93CT_hash.o: $(ARBHOME)/INCLUDE/arbtools.h
94CT_hash.o: $(ARBHOME)/INCLUDE/attributes.h
95CT_hash.o: $(ARBHOME)/INCLUDE/dupstr.h
96CT_hash.o: $(ARBHOME)/INCLUDE/smartptr.h
97CT_hash.o: $(ARBHOME)/INCLUDE/test_global.h
98
99CT_ntree.o: CT_def.hxx
100CT_ntree.o: CT_mem.hxx
101CT_ntree.o: CT_ntree.hxx
102CT_ntree.o: CT_part.hxx
103CT_ntree.o: $(ARBHOME)/INCLUDE/ad_prot.h
104CT_ntree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
105CT_ntree.o: $(ARBHOME)/INCLUDE/arb_assert.h
106CT_ntree.o: $(ARBHOME)/INCLUDE/arb_core.h
107CT_ntree.o: $(ARBHOME)/INCLUDE/arb_error.h
108CT_ntree.o: $(ARBHOME)/INCLUDE/arb_msg.h
109CT_ntree.o: $(ARBHOME)/INCLUDE/arb_string.h
110CT_ntree.o: $(ARBHOME)/INCLUDE/arbdb.h
111CT_ntree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
112CT_ntree.o: $(ARBHOME)/INCLUDE/arbdbt.h
113CT_ntree.o: $(ARBHOME)/INCLUDE/arbtools.h
114CT_ntree.o: $(ARBHOME)/INCLUDE/attributes.h
115CT_ntree.o: $(ARBHOME)/INCLUDE/dupstr.h
116CT_ntree.o: $(ARBHOME)/INCLUDE/smartptr.h
117CT_ntree.o: $(ARBHOME)/INCLUDE/test_global.h
118
119CT_part.o: CT_def.hxx
120CT_part.o: CT_mem.hxx
121CT_part.o: CT_part.hxx
122CT_part.o: $(ARBHOME)/INCLUDE/ad_prot.h
123CT_part.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
124CT_part.o: $(ARBHOME)/INCLUDE/arb_assert.h
125CT_part.o: $(ARBHOME)/INCLUDE/arb_core.h
126CT_part.o: $(ARBHOME)/INCLUDE/arb_error.h
127CT_part.o: $(ARBHOME)/INCLUDE/arb_msg.h
128CT_part.o: $(ARBHOME)/INCLUDE/arb_string.h
129CT_part.o: $(ARBHOME)/INCLUDE/arbdb.h
130CT_part.o: $(ARBHOME)/INCLUDE/arbdb_base.h
131CT_part.o: $(ARBHOME)/INCLUDE/arbdbt.h
132CT_part.o: $(ARBHOME)/INCLUDE/arbtools.h
133CT_part.o: $(ARBHOME)/INCLUDE/attributes.h
134CT_part.o: $(ARBHOME)/INCLUDE/dupstr.h
135CT_part.o: $(ARBHOME)/INCLUDE/smartptr.h
136CT_part.o: $(ARBHOME)/INCLUDE/test_global.h
137CT_part.o: $(ARBHOME)/INCLUDE/test_unit.h
138
139CT_rbtree.o: CT_ctree.hxx
140CT_rbtree.o: CT_def.hxx
141CT_rbtree.o: CT_mem.hxx
142CT_rbtree.o: CT_ntree.hxx
143CT_rbtree.o: CT_part.hxx
144CT_rbtree.o: $(ARBHOME)/INCLUDE/ad_prot.h
145CT_rbtree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
146CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_assert.h
147CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_core.h
148CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_error.h
149CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_msg.h
150CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_sort.h
151CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_strarray.h
152CT_rbtree.o: $(ARBHOME)/INCLUDE/arb_string.h
153CT_rbtree.o: $(ARBHOME)/INCLUDE/arbdb.h
154CT_rbtree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
155CT_rbtree.o: $(ARBHOME)/INCLUDE/arbdbt.h
156CT_rbtree.o: $(ARBHOME)/INCLUDE/arbtools.h
157CT_rbtree.o: $(ARBHOME)/INCLUDE/attributes.h
158CT_rbtree.o: $(ARBHOME)/INCLUDE/dupstr.h
159CT_rbtree.o: $(ARBHOME)/INCLUDE/smartptr.h
160CT_rbtree.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the browser.