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 | dbserver.o: dbserver.hxx |
---|
34 | dbserver.o: macros.hxx |
---|
35 | dbserver.o: macros_local.hxx |
---|
36 | dbserver.o: trackers.hxx |
---|
37 | dbserver.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
38 | dbserver.o: $(ARBHOME)/INCLUDE/ad_remote.h |
---|
39 | dbserver.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
40 | dbserver.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
41 | dbserver.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
42 | dbserver.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
43 | dbserver.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
44 | dbserver.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
45 | dbserver.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
46 | dbserver.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
47 | dbserver.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
48 | dbserver.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
49 | dbserver.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
50 | dbserver.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
51 | dbserver.o: $(ARBHOME)/INCLUDE/aw_awar.hxx |
---|
52 | dbserver.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
53 | dbserver.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx |
---|
54 | dbserver.o: $(ARBHOME)/INCLUDE/aw_msg.hxx |
---|
55 | dbserver.o: $(ARBHOME)/INCLUDE/aw_root.hxx |
---|
56 | dbserver.o: $(ARBHOME)/INCLUDE/aw_window.hxx |
---|
57 | dbserver.o: $(ARBHOME)/INCLUDE/cb.h |
---|
58 | dbserver.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
59 | dbserver.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
60 | dbserver.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
61 | dbserver.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
62 | dbserver.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
63 | dbserver.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
64 | dbserver.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
65 | dbserver.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
66 | dbserver.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
67 | dbserver.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
68 | |
---|
69 | macro_gui.o: macros.hxx |
---|
70 | macro_gui.o: macros_local.hxx |
---|
71 | macro_gui.o: trackers.hxx |
---|
72 | macro_gui.o: $(ARBHOME)/INCLUDE/ad_cb.h |
---|
73 | macro_gui.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h |
---|
74 | macro_gui.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
75 | macro_gui.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
76 | macro_gui.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
77 | macro_gui.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
78 | macro_gui.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
79 | macro_gui.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
80 | macro_gui.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
81 | macro_gui.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
82 | macro_gui.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
83 | macro_gui.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
84 | macro_gui.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
85 | macro_gui.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
86 | macro_gui.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
87 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_awar.hxx |
---|
88 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
89 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_edit.hxx |
---|
90 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_file.hxx |
---|
91 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx |
---|
92 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_msg.hxx |
---|
93 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_root.hxx |
---|
94 | macro_gui.o: $(ARBHOME)/INCLUDE/aw_window.hxx |
---|
95 | macro_gui.o: $(ARBHOME)/INCLUDE/cb.h |
---|
96 | macro_gui.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
97 | macro_gui.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
98 | macro_gui.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
99 | macro_gui.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
100 | macro_gui.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
101 | macro_gui.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
102 | macro_gui.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
103 | macro_gui.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
104 | macro_gui.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
105 | macro_gui.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
106 | |
---|
107 | recmac.o: macros_local.hxx |
---|
108 | recmac.o: recmac.hxx |
---|
109 | recmac.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
110 | recmac.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
111 | recmac.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
112 | recmac.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
113 | recmac.o: $(ARBHOME)/INCLUDE/arb_defs.h |
---|
114 | recmac.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
115 | recmac.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
116 | recmac.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
117 | recmac.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
118 | recmac.o: $(ARBHOME)/INCLUDE/arb_str.h |
---|
119 | recmac.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
120 | recmac.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
121 | recmac.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
122 | recmac.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
123 | recmac.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
124 | recmac.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
125 | recmac.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
126 | recmac.o: $(ARBHOME)/INCLUDE/aw_awar.hxx |
---|
127 | recmac.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
128 | recmac.o: $(ARBHOME)/INCLUDE/aw_file.hxx |
---|
129 | recmac.o: $(ARBHOME)/INCLUDE/aw_msg.hxx |
---|
130 | recmac.o: $(ARBHOME)/INCLUDE/aw_root.hxx |
---|
131 | recmac.o: $(ARBHOME)/INCLUDE/cb.h |
---|
132 | recmac.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
133 | recmac.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
134 | recmac.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
135 | recmac.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
136 | recmac.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
137 | recmac.o: $(ARBHOME)/INCLUDE/FileContent.h |
---|
138 | recmac.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
139 | recmac.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
140 | recmac.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
141 | recmac.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
142 | recmac.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
143 | recmac.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
144 | |
---|
145 | trackers.o: dbserver.hxx |
---|
146 | trackers.o: macros.hxx |
---|
147 | trackers.o: macros_local.hxx |
---|
148 | trackers.o: recmac.hxx |
---|
149 | trackers.o: trackers.hxx |
---|
150 | trackers.o: $(ARBHOME)/INCLUDE/ad_cb.h |
---|
151 | trackers.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h |
---|
152 | trackers.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
153 | trackers.o: $(ARBHOME)/INCLUDE/ad_remote.h |
---|
154 | trackers.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
---|
155 | trackers.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
156 | trackers.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
157 | trackers.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
158 | trackers.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
159 | trackers.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
160 | trackers.o: $(ARBHOME)/INCLUDE/arb_strarray.h |
---|
161 | trackers.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
162 | trackers.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
163 | trackers.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
164 | trackers.o: $(ARBHOME)/INCLUDE/arbdbt.h |
---|
165 | trackers.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
166 | trackers.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
167 | trackers.o: $(ARBHOME)/INCLUDE/aw_awar.hxx |
---|
168 | trackers.o: $(ARBHOME)/INCLUDE/aw_base.hxx |
---|
169 | trackers.o: $(ARBHOME)/INCLUDE/aw_msg.hxx |
---|
170 | trackers.o: $(ARBHOME)/INCLUDE/aw_root.hxx |
---|
171 | trackers.o: $(ARBHOME)/INCLUDE/cb.h |
---|
172 | trackers.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
173 | trackers.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
174 | trackers.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
175 | trackers.o: $(ARBHOME)/INCLUDE/downcast.h |
---|
176 | trackers.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
177 | trackers.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
178 | trackers.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
179 | trackers.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
180 | trackers.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
181 | trackers.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|