1 | # for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt |
---|
2 | .SUFFIXES: .o .cxx .depend |
---|
3 | |
---|
4 | # -------------------------------------------------------------------------------- |
---|
5 | |
---|
6 | LIBS = $(LIBPATH) $(ARBDB_LIB) $(SYSLIBS) |
---|
7 | |
---|
8 | # -------------------------------------------------------------------------------- |
---|
9 | |
---|
10 | DEST_EXECUTABLES = \ |
---|
11 | $(ARBHOME)/PROBE_SET/bin/ps_show_result \ |
---|
12 | $(ARBHOME)/PROBE_SET/bin/ps_arb2asciipaths \ |
---|
13 | $(ARBHOME)/PROBE_SET/bin/ps_my2asciipaths \ |
---|
14 | $(ARBHOME)/PROBE_SET/bin/ps_my2ascii \ |
---|
15 | $(ARBHOME)/PROBE_SET/bin/ps_get_probes \ |
---|
16 | $(ARBHOME)/PROBE_SET/bin/ps_eval \ |
---|
17 | $(ARBHOME)/PROBE_SET/bin/ps_find \ |
---|
18 | $(ARBHOME)/PROBE_SET/bin/ps_detect \ |
---|
19 | $(ARBHOME)/PROBE_SET/bin/ps_merge \ |
---|
20 | $(ARBHOME)/PROBE_SET/bin/ps_convert \ |
---|
21 | $(ARBHOME)/PROBE_SET/bin/fb_test \ |
---|
22 | |
---|
23 | all : bin $(DEST_EXECUTABLES) |
---|
24 | |
---|
25 | bin: |
---|
26 | mkdir -p bin |
---|
27 | |
---|
28 | # -------------------------------------------------------------------------------- |
---|
29 | |
---|
30 | SHARED_OBJECTS = ps_node.o ps_filebuffer.o ps_database.o ps_tools.o |
---|
31 | |
---|
32 | # -------------------------------------------------------------------------------- |
---|
33 | |
---|
34 | FB_TEST_OBJECTS = fb_test.o |
---|
35 | $(ARBHOME)/PROBE_SET/bin/fb_test : $(SHARED_OBJECTS) $(FB_TEST_OBJECTS) |
---|
36 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
37 | |
---|
38 | PS_CONVERT_OBJECTS = ps_convert_db.o |
---|
39 | $(ARBHOME)/PROBE_SET/bin/ps_convert : $(SHARED_OBJECTS) $(PS_CONVERT_OBJECTS) |
---|
40 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
41 | |
---|
42 | PS_MERGE_OBJECTS = ps_merge_my_dbs.o |
---|
43 | $(ARBHOME)/PROBE_SET/bin/ps_merge : $(SHARED_OBJECTS) $(PS_MERGE_OBJECTS) |
---|
44 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
45 | |
---|
46 | PS_DETECT_OBJECTS = ps_detect_weak_differences.o |
---|
47 | $(ARBHOME)/PROBE_SET/bin/ps_detect : $(SHARED_OBJECTS) $(PS_DETECT_OBJECTS) |
---|
48 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
49 | |
---|
50 | PS_FIND_OBJECTS = ps_find_probes.o |
---|
51 | $(ARBHOME)/PROBE_SET/bin/ps_find : $(SHARED_OBJECTS) $(PS_FIND_OBJECTS) |
---|
52 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
53 | |
---|
54 | PS_EVAL_OBJECTS = ps_eval_candidates.o |
---|
55 | $(ARBHOME)/PROBE_SET/bin/ps_eval : $(SHARED_OBJECTS) $(PS_EVAL_OBJECTS) |
---|
56 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
57 | |
---|
58 | PS_GET_PROBES_OBJECTS = ps_get_probes.o |
---|
59 | $(ARBHOME)/PROBE_SET/bin/ps_get_probes : $(SHARED_OBJECTS) $(PS_GET_PROBES_OBJECTS) |
---|
60 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
61 | |
---|
62 | PS_MY2ASCII_OBJECTS = ps_my2ascii.o |
---|
63 | $(ARBHOME)/PROBE_SET/bin/ps_my2ascii : $(SHARED_OBJECTS) $(PS_MY2ASCII_OBJECTS) |
---|
64 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
65 | |
---|
66 | PS_MY2ASCIIPATHS_OBJECTS = ps_my2asciipaths.o |
---|
67 | $(ARBHOME)/PROBE_SET/bin/ps_my2asciipaths : $(SHARED_OBJECTS) $(PS_MY2ASCIIPATHS_OBJECTS) |
---|
68 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
69 | |
---|
70 | PS_ARB2ASCIIPATHS_OBJECTS = ps_arb2asciipaths.o |
---|
71 | $(ARBHOME)/PROBE_SET/bin/ps_arb2asciipaths : $(SHARED_OBJECTS) $(PS_ARB2ASCIIPATHS_OBJECTS) |
---|
72 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
73 | |
---|
74 | PS_SHOW_RESULT_OBJECTS = ps_show_result.o |
---|
75 | $(ARBHOME)/PROBE_SET/bin/ps_show_result : $(SHARED_OBJECTS) $(PS_SHOW_RESULT_OBJECTS) |
---|
76 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) $(EXECLIBS) |
---|
77 | |
---|
78 | CPP_OBJECTS = $(SHARED_OBJECTS) \ |
---|
79 | $(FB_TEST_OBJECTS) \ |
---|
80 | $(PS_CONVERT_OBJECTS) \ |
---|
81 | $(PS_MERGE_OBJECTS) \ |
---|
82 | $(PS_DETECT_OBJECTS) \ |
---|
83 | $(PS_FIND_OBJECTS) \ |
---|
84 | $(PS_EVAL_OBJECTS) \ |
---|
85 | $(PS_GET_PROBES_OBJECTS) \ |
---|
86 | $(PS_MY2ASCII_OBJECTS) \ |
---|
87 | $(PS_MY2ASCIIPATHS_OBJECTS) \ |
---|
88 | $(PS_ARB2ASCIIPATHS_OBJECTS) \ |
---|
89 | $(PS_SHOW_RESULT_OBJECTS) \ |
---|
90 | |
---|
91 | .cxx.o: |
---|
92 | $(A_CXX) $(cflags) $(cxxflags) -c -o $@ $(@:.o=.cxx) $(CXX_INCLUDES) $(POST_COMPILE) |
---|
93 | |
---|
94 | clean: |
---|
95 | rm -f $(CPP_OBJECTS) |
---|
96 | rm -f $(DEST_EXECUTABLES) |
---|
97 | |
---|
98 | DEPENDS = $(CPP_OBJECTS:.o=.depend) |
---|
99 | depends: $(DEPENDS) |
---|
100 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
101 | @rm $(DEPENDS) |
---|
102 | $(DEPENDS): depend.init |
---|
103 | depend.init: |
---|
104 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
105 | .c.depend: |
---|
106 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
107 | .cxx.depend: |
---|
108 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
109 | |
---|
110 | # DO NOT DELETE |
---|
111 | |
---|
112 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
113 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
---|
114 | |
---|
115 | fb_test.o: ps_assert.hxx |
---|
116 | fb_test.o: ps_bitmap.hxx |
---|
117 | fb_test.o: ps_bitset.hxx |
---|
118 | fb_test.o: ps_defs.hxx |
---|
119 | fb_test.o: ps_filebuffer.hxx |
---|
120 | fb_test.o: ps_node.hxx |
---|
121 | fb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
122 | fb_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
123 | fb_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
124 | fb_test.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
125 | fb_test.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
126 | fb_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
127 | fb_test.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
128 | fb_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
129 | fb_test.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
130 | |
---|
131 | ps_arb2asciipaths.o: ps_assert.hxx |
---|
132 | ps_arb2asciipaths.o: ps_defs.hxx |
---|
133 | ps_arb2asciipaths.o: ps_filebuffer.hxx |
---|
134 | ps_arb2asciipaths.o: ps_pg_tree_functions.hxx |
---|
135 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
136 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
137 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
138 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
139 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
140 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
141 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
142 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
143 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
144 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
145 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
146 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
147 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
148 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
149 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
150 | |
---|
151 | ps_convert_db.o: ps_assert.hxx |
---|
152 | ps_convert_db.o: ps_database.hxx |
---|
153 | ps_convert_db.o: ps_defs.hxx |
---|
154 | ps_convert_db.o: ps_filebuffer.hxx |
---|
155 | ps_convert_db.o: ps_node.hxx |
---|
156 | ps_convert_db.o: ps_pg_specmap.hxx |
---|
157 | ps_convert_db.o: ps_pg_tree_functions.hxx |
---|
158 | ps_convert_db.o: ps_tools.hxx |
---|
159 | ps_convert_db.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
160 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
161 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
162 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
163 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
164 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
165 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
166 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
167 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
168 | ps_convert_db.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
169 | ps_convert_db.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
170 | ps_convert_db.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
171 | ps_convert_db.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
172 | ps_convert_db.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
173 | ps_convert_db.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
174 | |
---|
175 | ps_database.o: ps_assert.hxx |
---|
176 | ps_database.o: ps_database.hxx |
---|
177 | ps_database.o: ps_defs.hxx |
---|
178 | ps_database.o: ps_filebuffer.hxx |
---|
179 | ps_database.o: ps_node.hxx |
---|
180 | ps_database.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
181 | ps_database.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
182 | ps_database.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
183 | ps_database.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
184 | ps_database.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
185 | ps_database.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
186 | ps_database.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
187 | ps_database.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
188 | ps_database.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
189 | |
---|
190 | ps_detect_weak_differences.o: ps_assert.hxx |
---|
191 | ps_detect_weak_differences.o: ps_bitmap.hxx |
---|
192 | ps_detect_weak_differences.o: ps_bitset.hxx |
---|
193 | ps_detect_weak_differences.o: ps_database.hxx |
---|
194 | ps_detect_weak_differences.o: ps_defs.hxx |
---|
195 | ps_detect_weak_differences.o: ps_filebuffer.hxx |
---|
196 | ps_detect_weak_differences.o: ps_node.hxx |
---|
197 | ps_detect_weak_differences.o: ps_tools.hxx |
---|
198 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
199 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
200 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
201 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
202 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
203 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
204 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
205 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
206 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
207 | |
---|
208 | ps_eval_candidates.o: ps_assert.hxx |
---|
209 | ps_eval_candidates.o: ps_bitmap.hxx |
---|
210 | ps_eval_candidates.o: ps_bitset.hxx |
---|
211 | ps_eval_candidates.o: ps_candidate.hxx |
---|
212 | ps_eval_candidates.o: ps_database.hxx |
---|
213 | ps_eval_candidates.o: ps_defs.hxx |
---|
214 | ps_eval_candidates.o: ps_filebuffer.hxx |
---|
215 | ps_eval_candidates.o: ps_node.hxx |
---|
216 | ps_eval_candidates.o: ps_tools.hxx |
---|
217 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
218 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
219 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
220 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
221 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
222 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
223 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
224 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
225 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
226 | |
---|
227 | ps_filebuffer.o: ps_assert.hxx |
---|
228 | ps_filebuffer.o: ps_filebuffer.hxx |
---|
229 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
230 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
231 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
232 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
233 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
234 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
235 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
236 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
237 | |
---|
238 | ps_find_probes.o: ps_assert.hxx |
---|
239 | ps_find_probes.o: ps_bitmap.hxx |
---|
240 | ps_find_probes.o: ps_bitset.hxx |
---|
241 | ps_find_probes.o: ps_candidate.hxx |
---|
242 | ps_find_probes.o: ps_database.hxx |
---|
243 | ps_find_probes.o: ps_defs.hxx |
---|
244 | ps_find_probes.o: ps_filebuffer.hxx |
---|
245 | ps_find_probes.o: ps_node.hxx |
---|
246 | ps_find_probes.o: ps_tools.hxx |
---|
247 | ps_find_probes.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
248 | ps_find_probes.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
249 | ps_find_probes.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
250 | ps_find_probes.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
251 | ps_find_probes.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
252 | ps_find_probes.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
253 | ps_find_probes.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
254 | ps_find_probes.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
255 | ps_find_probes.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
256 | |
---|
257 | ps_get_probes.o: ps_assert.hxx |
---|
258 | ps_get_probes.o: ps_defs.hxx |
---|
259 | ps_get_probes.o: ps_filebuffer.hxx |
---|
260 | ps_get_probes.o: ps_pg_tree_functions.hxx |
---|
261 | ps_get_probes.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
262 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
263 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
264 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
265 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
266 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
267 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
268 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
269 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
270 | ps_get_probes.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
271 | ps_get_probes.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
272 | ps_get_probes.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
273 | ps_get_probes.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
274 | ps_get_probes.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
275 | ps_get_probes.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
276 | |
---|
277 | ps_merge_my_dbs.o: ps_assert.hxx |
---|
278 | ps_merge_my_dbs.o: ps_database.hxx |
---|
279 | ps_merge_my_dbs.o: ps_defs.hxx |
---|
280 | ps_merge_my_dbs.o: ps_filebuffer.hxx |
---|
281 | ps_merge_my_dbs.o: ps_node.hxx |
---|
282 | ps_merge_my_dbs.o: ps_tools.hxx |
---|
283 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
284 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
285 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
286 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
287 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
288 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
289 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
290 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
291 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
292 | |
---|
293 | ps_my2ascii.o: ps_assert.hxx |
---|
294 | ps_my2ascii.o: ps_defs.hxx |
---|
295 | ps_my2ascii.o: ps_filebuffer.hxx |
---|
296 | ps_my2ascii.o: ps_node.hxx |
---|
297 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
298 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
299 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
300 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
301 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
302 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
303 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
304 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
305 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
306 | |
---|
307 | ps_my2asciipaths.o: ps_assert.hxx |
---|
308 | ps_my2asciipaths.o: ps_defs.hxx |
---|
309 | ps_my2asciipaths.o: ps_filebuffer.hxx |
---|
310 | ps_my2asciipaths.o: ps_node.hxx |
---|
311 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
312 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
313 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
314 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
315 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
316 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
317 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
318 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
319 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
320 | |
---|
321 | ps_node.o: ps_assert.hxx |
---|
322 | ps_node.o: ps_defs.hxx |
---|
323 | ps_node.o: ps_filebuffer.hxx |
---|
324 | ps_node.o: ps_node.hxx |
---|
325 | ps_node.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
326 | ps_node.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
327 | ps_node.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
328 | ps_node.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
329 | ps_node.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
330 | ps_node.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
331 | ps_node.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
332 | ps_node.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
333 | ps_node.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
334 | |
---|
335 | ps_show_result.o: ps_assert.hxx |
---|
336 | ps_show_result.o: ps_bitmap.hxx |
---|
337 | ps_show_result.o: ps_bitset.hxx |
---|
338 | ps_show_result.o: ps_defs.hxx |
---|
339 | ps_show_result.o: ps_filebuffer.hxx |
---|
340 | ps_show_result.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
341 | ps_show_result.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
342 | ps_show_result.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
343 | ps_show_result.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
344 | ps_show_result.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
345 | ps_show_result.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
346 | ps_show_result.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
347 | ps_show_result.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
348 | |
---|
349 | ps_tools.o: ps_tools.hxx |
---|