source: branches/gcc/PROBE_SET/Makefile

Last change on this file was 19958, checked in by westram, 6 days ago
  • remove pre-C++11 code.
  • fix include of stringize.h + update depends.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.1 KB
Line 
1# for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt
2.SUFFIXES: .o .cxx .depend
3
4# --------------------------------------------------------------------------------
5
6LIBS = $(LIBPATH) $(ARBDB_LIB) $(SYSLIBS)
7
8# --------------------------------------------------------------------------------
9
10DEST_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
23all : bin $(DEST_EXECUTABLES)
24
25bin:
26                mkdir -p bin
27
28# --------------------------------------------------------------------------------
29
30SHARED_OBJECTS = ps_node.o ps_filebuffer.o ps_database.o ps_tools.o
31
32# --------------------------------------------------------------------------------
33
34FB_TEST_OBJECTS = fb_test.o
35$(ARBHOME)/PROBE_SET/bin/fb_test : $(SHARED_OBJECTS) $(FB_TEST_OBJECTS) $(use_ARB_main)
36        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
37
38PS_CONVERT_OBJECTS = ps_convert_db.o
39$(ARBHOME)/PROBE_SET/bin/ps_convert : $(SHARED_OBJECTS) $(PS_CONVERT_OBJECTS)
40        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
41
42PS_MERGE_OBJECTS = ps_merge_my_dbs.o
43$(ARBHOME)/PROBE_SET/bin/ps_merge : $(SHARED_OBJECTS) $(PS_MERGE_OBJECTS)
44        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
45
46PS_DETECT_OBJECTS = ps_detect_weak_differences.o
47$(ARBHOME)/PROBE_SET/bin/ps_detect : $(SHARED_OBJECTS) $(PS_DETECT_OBJECTS)
48        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
49
50PS_FIND_OBJECTS = ps_find_probes.o
51$(ARBHOME)/PROBE_SET/bin/ps_find : $(SHARED_OBJECTS) $(PS_FIND_OBJECTS)
52        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
53
54PS_EVAL_OBJECTS = ps_eval_candidates.o
55$(ARBHOME)/PROBE_SET/bin/ps_eval : $(SHARED_OBJECTS) $(PS_EVAL_OBJECTS)
56        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
57
58PS_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)
61
62PS_MY2ASCII_OBJECTS = ps_my2ascii.o
63$(ARBHOME)/PROBE_SET/bin/ps_my2ascii : $(SHARED_OBJECTS) $(PS_MY2ASCII_OBJECTS)
64        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
65
66PS_MY2ASCIIPATHS_OBJECTS = ps_my2asciipaths.o
67$(ARBHOME)/PROBE_SET/bin/ps_my2asciipaths : $(SHARED_OBJECTS) $(PS_MY2ASCIIPATHS_OBJECTS)
68        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
69
70PS_ARB2ASCIIPATHS_OBJECTS = ps_arb2asciipaths.o
71$(ARBHOME)/PROBE_SET/bin/ps_arb2asciipaths : $(SHARED_OBJECTS) $(PS_ARB2ASCIIPATHS_OBJECTS)
72        $(LINK_EXECUTABLE) $@ $^ $(LIBS)
73
74PS_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)
77
78OBJECTS = $(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
94cleanLinked:
95        rm -f $(DEST_EXECUTABLES)
96
97clean: cleanLinked
98        rm -f $(OBJECTS)
99
100DEPENDS = $(OBJECTS:.o=.depend)
101depends: $(DEPENDS)
102        @cat $(DEPENDS) | grep -v '^#' >>Makefile
103        @rm $(DEPENDS)
104$(DEPENDS): depend.init
105depend.init:
106        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
107.c.depend:
108        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
109.cxx.depend:
110        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
111
112# DO NOT DELETE
113
114# Do not add dependencies manually - use 'make depend' in $ARBHOME
115# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main)
116
117fb_test.o: ps_assert.hxx
118fb_test.o: ps_bitmap.hxx
119fb_test.o: ps_bitset.hxx
120fb_test.o: ps_defs.hxx
121fb_test.o: ps_filebuffer.hxx
122fb_test.o: ps_node.hxx
123fb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h
124fb_test.o: $(ARBHOME)/INCLUDE/arb_core.h
125fb_test.o: $(ARBHOME)/INCLUDE/arb_diff.h
126fb_test.o: $(ARBHOME)/INCLUDE/arb_file.h
127fb_test.o: $(ARBHOME)/INCLUDE/arb_msg.h
128fb_test.o: $(ARBHOME)/INCLUDE/arbtools.h
129fb_test.o: $(ARBHOME)/INCLUDE/attributes.h
130fb_test.o: $(ARBHOME)/INCLUDE/cxxforward.h
131fb_test.o: $(ARBHOME)/INCLUDE/dupstr.h
132fb_test.o: $(ARBHOME)/INCLUDE/gccver.h
133fb_test.o: $(ARBHOME)/INCLUDE/smartptr.h
134fb_test.o: $(ARBHOME)/INCLUDE/stringize.h
135fb_test.o: $(ARBHOME)/INCLUDE/test_global.h
136fb_test.o: $(ARBHOME)/INCLUDE/test_unit.h
137
138ps_arb2asciipaths.o: ps_assert.hxx
139ps_arb2asciipaths.o: ps_defs.hxx
140ps_arb2asciipaths.o: ps_filebuffer.hxx
141ps_arb2asciipaths.o: ps_pg_tree_functions.hxx
142ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/ad_prot.h
143ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_assert.h
144ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_core.h
145ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_error.h
146ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_mem.h
147ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_msg.h
148ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_string.h
149ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbdb.h
150ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbdb_base.h
151ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbtools.h
152ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/attributes.h
153ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/cxxforward.h
154ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/dupstr.h
155ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/gccver.h
156ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/smartptr.h
157ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/stringize.h
158ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/test_global.h
159
160ps_convert_db.o: ps_assert.hxx
161ps_convert_db.o: ps_database.hxx
162ps_convert_db.o: ps_defs.hxx
163ps_convert_db.o: ps_filebuffer.hxx
164ps_convert_db.o: ps_node.hxx
165ps_convert_db.o: ps_pg_specmap.hxx
166ps_convert_db.o: ps_pg_tree_functions.hxx
167ps_convert_db.o: ps_tools.hxx
168ps_convert_db.o: $(ARBHOME)/INCLUDE/ad_prot.h
169ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_assert.h
170ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_core.h
171ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_error.h
172ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_mem.h
173ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_msg.h
174ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_string.h
175ps_convert_db.o: $(ARBHOME)/INCLUDE/arbdb.h
176ps_convert_db.o: $(ARBHOME)/INCLUDE/arbdb_base.h
177ps_convert_db.o: $(ARBHOME)/INCLUDE/arbtools.h
178ps_convert_db.o: $(ARBHOME)/INCLUDE/attributes.h
179ps_convert_db.o: $(ARBHOME)/INCLUDE/cxxforward.h
180ps_convert_db.o: $(ARBHOME)/INCLUDE/dupstr.h
181ps_convert_db.o: $(ARBHOME)/INCLUDE/gccver.h
182ps_convert_db.o: $(ARBHOME)/INCLUDE/smartptr.h
183ps_convert_db.o: $(ARBHOME)/INCLUDE/stringize.h
184ps_convert_db.o: $(ARBHOME)/INCLUDE/test_global.h
185
186ps_database.o: ps_assert.hxx
187ps_database.o: ps_database.hxx
188ps_database.o: ps_defs.hxx
189ps_database.o: ps_filebuffer.hxx
190ps_database.o: ps_node.hxx
191ps_database.o: $(ARBHOME)/INCLUDE/arb_assert.h
192ps_database.o: $(ARBHOME)/INCLUDE/arb_core.h
193ps_database.o: $(ARBHOME)/INCLUDE/arbtools.h
194ps_database.o: $(ARBHOME)/INCLUDE/attributes.h
195ps_database.o: $(ARBHOME)/INCLUDE/cxxforward.h
196ps_database.o: $(ARBHOME)/INCLUDE/dupstr.h
197ps_database.o: $(ARBHOME)/INCLUDE/gccver.h
198ps_database.o: $(ARBHOME)/INCLUDE/smartptr.h
199ps_database.o: $(ARBHOME)/INCLUDE/stringize.h
200ps_database.o: $(ARBHOME)/INCLUDE/test_global.h
201
202ps_detect_weak_differences.o: ps_assert.hxx
203ps_detect_weak_differences.o: ps_bitmap.hxx
204ps_detect_weak_differences.o: ps_bitset.hxx
205ps_detect_weak_differences.o: ps_database.hxx
206ps_detect_weak_differences.o: ps_defs.hxx
207ps_detect_weak_differences.o: ps_filebuffer.hxx
208ps_detect_weak_differences.o: ps_node.hxx
209ps_detect_weak_differences.o: ps_tools.hxx
210ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arb_assert.h
211ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arb_core.h
212ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arbtools.h
213ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/attributes.h
214ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/cxxforward.h
215ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/dupstr.h
216ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/gccver.h
217ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/smartptr.h
218ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/stringize.h
219ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/test_global.h
220
221ps_eval_candidates.o: ps_assert.hxx
222ps_eval_candidates.o: ps_bitmap.hxx
223ps_eval_candidates.o: ps_bitset.hxx
224ps_eval_candidates.o: ps_candidate.hxx
225ps_eval_candidates.o: ps_database.hxx
226ps_eval_candidates.o: ps_defs.hxx
227ps_eval_candidates.o: ps_filebuffer.hxx
228ps_eval_candidates.o: ps_node.hxx
229ps_eval_candidates.o: ps_tools.hxx
230ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arb_assert.h
231ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arb_core.h
232ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arbtools.h
233ps_eval_candidates.o: $(ARBHOME)/INCLUDE/attributes.h
234ps_eval_candidates.o: $(ARBHOME)/INCLUDE/cxxforward.h
235ps_eval_candidates.o: $(ARBHOME)/INCLUDE/dupstr.h
236ps_eval_candidates.o: $(ARBHOME)/INCLUDE/gccver.h
237ps_eval_candidates.o: $(ARBHOME)/INCLUDE/smartptr.h
238ps_eval_candidates.o: $(ARBHOME)/INCLUDE/stringize.h
239ps_eval_candidates.o: $(ARBHOME)/INCLUDE/test_global.h
240
241ps_filebuffer.o: ps_assert.hxx
242ps_filebuffer.o: ps_filebuffer.hxx
243ps_filebuffer.o: $(ARBHOME)/INCLUDE/arb_assert.h
244ps_filebuffer.o: $(ARBHOME)/INCLUDE/arb_core.h
245ps_filebuffer.o: $(ARBHOME)/INCLUDE/arbtools.h
246ps_filebuffer.o: $(ARBHOME)/INCLUDE/attributes.h
247ps_filebuffer.o: $(ARBHOME)/INCLUDE/cxxforward.h
248ps_filebuffer.o: $(ARBHOME)/INCLUDE/dupstr.h
249ps_filebuffer.o: $(ARBHOME)/INCLUDE/gccver.h
250ps_filebuffer.o: $(ARBHOME)/INCLUDE/stringize.h
251ps_filebuffer.o: $(ARBHOME)/INCLUDE/test_global.h
252
253ps_find_probes.o: ps_assert.hxx
254ps_find_probes.o: ps_bitmap.hxx
255ps_find_probes.o: ps_bitset.hxx
256ps_find_probes.o: ps_candidate.hxx
257ps_find_probes.o: ps_database.hxx
258ps_find_probes.o: ps_defs.hxx
259ps_find_probes.o: ps_filebuffer.hxx
260ps_find_probes.o: ps_node.hxx
261ps_find_probes.o: ps_tools.hxx
262ps_find_probes.o: $(ARBHOME)/INCLUDE/arb_assert.h
263ps_find_probes.o: $(ARBHOME)/INCLUDE/arb_core.h
264ps_find_probes.o: $(ARBHOME)/INCLUDE/arbtools.h
265ps_find_probes.o: $(ARBHOME)/INCLUDE/attributes.h
266ps_find_probes.o: $(ARBHOME)/INCLUDE/cxxforward.h
267ps_find_probes.o: $(ARBHOME)/INCLUDE/dupstr.h
268ps_find_probes.o: $(ARBHOME)/INCLUDE/gccver.h
269ps_find_probes.o: $(ARBHOME)/INCLUDE/smartptr.h
270ps_find_probes.o: $(ARBHOME)/INCLUDE/stringize.h
271ps_find_probes.o: $(ARBHOME)/INCLUDE/test_global.h
272
273ps_get_probes.o: ps_assert.hxx
274ps_get_probes.o: ps_defs.hxx
275ps_get_probes.o: ps_filebuffer.hxx
276ps_get_probes.o: ps_pg_tree_functions.hxx
277ps_get_probes.o: $(ARBHOME)/INCLUDE/ad_prot.h
278ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_assert.h
279ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_core.h
280ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_error.h
281ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_mem.h
282ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_msg.h
283ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_string.h
284ps_get_probes.o: $(ARBHOME)/INCLUDE/arbdb.h
285ps_get_probes.o: $(ARBHOME)/INCLUDE/arbdb_base.h
286ps_get_probes.o: $(ARBHOME)/INCLUDE/arbtools.h
287ps_get_probes.o: $(ARBHOME)/INCLUDE/attributes.h
288ps_get_probes.o: $(ARBHOME)/INCLUDE/cxxforward.h
289ps_get_probes.o: $(ARBHOME)/INCLUDE/dupstr.h
290ps_get_probes.o: $(ARBHOME)/INCLUDE/gccver.h
291ps_get_probes.o: $(ARBHOME)/INCLUDE/smartptr.h
292ps_get_probes.o: $(ARBHOME)/INCLUDE/stringize.h
293ps_get_probes.o: $(ARBHOME)/INCLUDE/test_global.h
294
295ps_merge_my_dbs.o: ps_assert.hxx
296ps_merge_my_dbs.o: ps_database.hxx
297ps_merge_my_dbs.o: ps_defs.hxx
298ps_merge_my_dbs.o: ps_filebuffer.hxx
299ps_merge_my_dbs.o: ps_node.hxx
300ps_merge_my_dbs.o: ps_tools.hxx
301ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arb_assert.h
302ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arb_core.h
303ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arbtools.h
304ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/attributes.h
305ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/cxxforward.h
306ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/dupstr.h
307ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/gccver.h
308ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/smartptr.h
309ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/stringize.h
310ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/test_global.h
311
312ps_my2ascii.o: ps_assert.hxx
313ps_my2ascii.o: ps_defs.hxx
314ps_my2ascii.o: ps_filebuffer.hxx
315ps_my2ascii.o: ps_node.hxx
316ps_my2ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h
317ps_my2ascii.o: $(ARBHOME)/INCLUDE/arb_core.h
318ps_my2ascii.o: $(ARBHOME)/INCLUDE/arbtools.h
319ps_my2ascii.o: $(ARBHOME)/INCLUDE/attributes.h
320ps_my2ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h
321ps_my2ascii.o: $(ARBHOME)/INCLUDE/dupstr.h
322ps_my2ascii.o: $(ARBHOME)/INCLUDE/gccver.h
323ps_my2ascii.o: $(ARBHOME)/INCLUDE/smartptr.h
324ps_my2ascii.o: $(ARBHOME)/INCLUDE/stringize.h
325ps_my2ascii.o: $(ARBHOME)/INCLUDE/test_global.h
326
327ps_my2asciipaths.o: ps_assert.hxx
328ps_my2asciipaths.o: ps_defs.hxx
329ps_my2asciipaths.o: ps_filebuffer.hxx
330ps_my2asciipaths.o: ps_node.hxx
331ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arb_assert.h
332ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arb_core.h
333ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arbtools.h
334ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/attributes.h
335ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/cxxforward.h
336ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/dupstr.h
337ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/gccver.h
338ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/smartptr.h
339ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/stringize.h
340ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/test_global.h
341
342ps_node.o: ps_assert.hxx
343ps_node.o: ps_defs.hxx
344ps_node.o: ps_filebuffer.hxx
345ps_node.o: ps_node.hxx
346ps_node.o: $(ARBHOME)/INCLUDE/arb_assert.h
347ps_node.o: $(ARBHOME)/INCLUDE/arb_core.h
348ps_node.o: $(ARBHOME)/INCLUDE/arbtools.h
349ps_node.o: $(ARBHOME)/INCLUDE/attributes.h
350ps_node.o: $(ARBHOME)/INCLUDE/cxxforward.h
351ps_node.o: $(ARBHOME)/INCLUDE/dupstr.h
352ps_node.o: $(ARBHOME)/INCLUDE/gccver.h
353ps_node.o: $(ARBHOME)/INCLUDE/smartptr.h
354ps_node.o: $(ARBHOME)/INCLUDE/stringize.h
355ps_node.o: $(ARBHOME)/INCLUDE/test_global.h
356
357ps_show_result.o: ps_assert.hxx
358ps_show_result.o: ps_bitmap.hxx
359ps_show_result.o: ps_bitset.hxx
360ps_show_result.o: ps_defs.hxx
361ps_show_result.o: ps_filebuffer.hxx
362ps_show_result.o: $(ARBHOME)/INCLUDE/arb_assert.h
363ps_show_result.o: $(ARBHOME)/INCLUDE/arb_core.h
364ps_show_result.o: $(ARBHOME)/INCLUDE/arbtools.h
365ps_show_result.o: $(ARBHOME)/INCLUDE/attributes.h
366ps_show_result.o: $(ARBHOME)/INCLUDE/cxxforward.h
367ps_show_result.o: $(ARBHOME)/INCLUDE/dupstr.h
368ps_show_result.o: $(ARBHOME)/INCLUDE/gccver.h
369ps_show_result.o: $(ARBHOME)/INCLUDE/stringize.h
370ps_show_result.o: $(ARBHOME)/INCLUDE/test_global.h
371
372ps_tools.o: ps_tools.hxx
373ps_tools.o: $(ARBHOME)/INCLUDE/cxxforward.h
374ps_tools.o: $(ARBHOME)/INCLUDE/gccver.h
375ps_tools.o: $(ARBHOME)/INCLUDE/stringize.h
Note: See TracBrowser for help on using the repository browser.