| 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) $(use_ARB_main) |
|---|
| 36 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) |
|---|
| 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) |
|---|
| 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) |
|---|
| 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) |
|---|
| 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) |
|---|
| 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) |
|---|
| 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) |
|---|
| 61 | |
|---|
| 62 | PS_MY2ASCII_OBJECTS = ps_my2ascii.o |
|---|
| 63 | $(ARBHOME)/PROBE_SET/bin/ps_my2ascii : $(SHARED_OBJECTS) $(PS_MY2ASCII_OBJECTS) |
|---|
| 64 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) |
|---|
| 65 | |
|---|
| 66 | PS_MY2ASCIIPATHS_OBJECTS = ps_my2asciipaths.o |
|---|
| 67 | $(ARBHOME)/PROBE_SET/bin/ps_my2asciipaths : $(SHARED_OBJECTS) $(PS_MY2ASCIIPATHS_OBJECTS) |
|---|
| 68 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) |
|---|
| 69 | |
|---|
| 70 | PS_ARB2ASCIIPATHS_OBJECTS = ps_arb2asciipaths.o |
|---|
| 71 | $(ARBHOME)/PROBE_SET/bin/ps_arb2asciipaths : $(SHARED_OBJECTS) $(PS_ARB2ASCIIPATHS_OBJECTS) |
|---|
| 72 | $(LINK_EXECUTABLE) $@ $^ $(LIBS) |
|---|
| 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) |
|---|
| 77 | |
|---|
| 78 | 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 | cleanLinked: |
|---|
| 95 | rm -f $(DEST_EXECUTABLES) |
|---|
| 96 | |
|---|
| 97 | clean: cleanLinked |
|---|
| 98 | rm -f $(OBJECTS) |
|---|
| 99 | |
|---|
| 100 | DEPENDS = $(OBJECTS:.o=.depend) |
|---|
| 101 | depends: $(DEPENDS) |
|---|
| 102 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
|---|
| 103 | @rm $(DEPENDS) |
|---|
| 104 | $(DEPENDS): depend.init |
|---|
| 105 | depend.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 | |
|---|
| 117 | fb_test.o: ps_assert.hxx |
|---|
| 118 | fb_test.o: ps_bitmap.hxx |
|---|
| 119 | fb_test.o: ps_bitset.hxx |
|---|
| 120 | fb_test.o: ps_defs.hxx |
|---|
| 121 | fb_test.o: ps_filebuffer.hxx |
|---|
| 122 | fb_test.o: ps_node.hxx |
|---|
| 123 | fb_test.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 124 | fb_test.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 125 | fb_test.o: $(ARBHOME)/INCLUDE/arb_diff.h |
|---|
| 126 | fb_test.o: $(ARBHOME)/INCLUDE/arb_file.h |
|---|
| 127 | fb_test.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 128 | fb_test.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 129 | fb_test.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 130 | fb_test.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 131 | fb_test.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 132 | fb_test.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 133 | fb_test.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 134 | fb_test.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 135 | fb_test.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 136 | |
|---|
| 137 | ps_arb2asciipaths.o: ps_assert.hxx |
|---|
| 138 | ps_arb2asciipaths.o: ps_defs.hxx |
|---|
| 139 | ps_arb2asciipaths.o: ps_filebuffer.hxx |
|---|
| 140 | ps_arb2asciipaths.o: ps_pg_tree_functions.hxx |
|---|
| 141 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 142 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 143 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 144 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 145 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 146 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 147 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 148 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 149 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 150 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 151 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 152 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 153 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 154 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 155 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 156 | ps_arb2asciipaths.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 157 | |
|---|
| 158 | ps_convert_db.o: ps_assert.hxx |
|---|
| 159 | ps_convert_db.o: ps_database.hxx |
|---|
| 160 | ps_convert_db.o: ps_defs.hxx |
|---|
| 161 | ps_convert_db.o: ps_filebuffer.hxx |
|---|
| 162 | ps_convert_db.o: ps_node.hxx |
|---|
| 163 | ps_convert_db.o: ps_pg_specmap.hxx |
|---|
| 164 | ps_convert_db.o: ps_pg_tree_functions.hxx |
|---|
| 165 | ps_convert_db.o: ps_tools.hxx |
|---|
| 166 | ps_convert_db.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 167 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 168 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 169 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 170 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 171 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 172 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 173 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 174 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 175 | ps_convert_db.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 176 | ps_convert_db.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 177 | ps_convert_db.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 178 | ps_convert_db.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 179 | ps_convert_db.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 180 | ps_convert_db.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 181 | ps_convert_db.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 182 | |
|---|
| 183 | ps_database.o: ps_assert.hxx |
|---|
| 184 | ps_database.o: ps_database.hxx |
|---|
| 185 | ps_database.o: ps_defs.hxx |
|---|
| 186 | ps_database.o: ps_filebuffer.hxx |
|---|
| 187 | ps_database.o: ps_node.hxx |
|---|
| 188 | ps_database.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 189 | ps_database.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 190 | ps_database.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 191 | ps_database.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 192 | ps_database.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 193 | ps_database.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 194 | ps_database.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 195 | ps_database.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 196 | ps_database.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 197 | |
|---|
| 198 | ps_detect_weak_differences.o: ps_assert.hxx |
|---|
| 199 | ps_detect_weak_differences.o: ps_bitmap.hxx |
|---|
| 200 | ps_detect_weak_differences.o: ps_bitset.hxx |
|---|
| 201 | ps_detect_weak_differences.o: ps_database.hxx |
|---|
| 202 | ps_detect_weak_differences.o: ps_defs.hxx |
|---|
| 203 | ps_detect_weak_differences.o: ps_filebuffer.hxx |
|---|
| 204 | ps_detect_weak_differences.o: ps_node.hxx |
|---|
| 205 | ps_detect_weak_differences.o: ps_tools.hxx |
|---|
| 206 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 207 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 208 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 209 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 210 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 211 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 212 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 213 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 214 | ps_detect_weak_differences.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 215 | |
|---|
| 216 | ps_eval_candidates.o: ps_assert.hxx |
|---|
| 217 | ps_eval_candidates.o: ps_bitmap.hxx |
|---|
| 218 | ps_eval_candidates.o: ps_bitset.hxx |
|---|
| 219 | ps_eval_candidates.o: ps_candidate.hxx |
|---|
| 220 | ps_eval_candidates.o: ps_database.hxx |
|---|
| 221 | ps_eval_candidates.o: ps_defs.hxx |
|---|
| 222 | ps_eval_candidates.o: ps_filebuffer.hxx |
|---|
| 223 | ps_eval_candidates.o: ps_node.hxx |
|---|
| 224 | ps_eval_candidates.o: ps_tools.hxx |
|---|
| 225 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 226 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 227 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 228 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 229 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 230 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 231 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 232 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 233 | ps_eval_candidates.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 234 | |
|---|
| 235 | ps_filebuffer.o: ps_assert.hxx |
|---|
| 236 | ps_filebuffer.o: ps_filebuffer.hxx |
|---|
| 237 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 238 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 239 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 240 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 241 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 242 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 243 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 244 | ps_filebuffer.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 245 | |
|---|
| 246 | ps_find_probes.o: ps_assert.hxx |
|---|
| 247 | ps_find_probes.o: ps_bitmap.hxx |
|---|
| 248 | ps_find_probes.o: ps_bitset.hxx |
|---|
| 249 | ps_find_probes.o: ps_candidate.hxx |
|---|
| 250 | ps_find_probes.o: ps_database.hxx |
|---|
| 251 | ps_find_probes.o: ps_defs.hxx |
|---|
| 252 | ps_find_probes.o: ps_filebuffer.hxx |
|---|
| 253 | ps_find_probes.o: ps_node.hxx |
|---|
| 254 | ps_find_probes.o: ps_tools.hxx |
|---|
| 255 | ps_find_probes.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 256 | ps_find_probes.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 257 | ps_find_probes.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 258 | ps_find_probes.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 259 | ps_find_probes.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 260 | ps_find_probes.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 261 | ps_find_probes.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 262 | ps_find_probes.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 263 | ps_find_probes.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 264 | |
|---|
| 265 | ps_get_probes.o: ps_assert.hxx |
|---|
| 266 | ps_get_probes.o: ps_defs.hxx |
|---|
| 267 | ps_get_probes.o: ps_filebuffer.hxx |
|---|
| 268 | ps_get_probes.o: ps_pg_tree_functions.hxx |
|---|
| 269 | ps_get_probes.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 270 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 271 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 272 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 273 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 274 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 275 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 276 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 277 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 278 | ps_get_probes.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 279 | ps_get_probes.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 280 | ps_get_probes.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 281 | ps_get_probes.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 282 | ps_get_probes.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 283 | ps_get_probes.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 284 | ps_get_probes.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 285 | |
|---|
| 286 | ps_merge_my_dbs.o: ps_assert.hxx |
|---|
| 287 | ps_merge_my_dbs.o: ps_database.hxx |
|---|
| 288 | ps_merge_my_dbs.o: ps_defs.hxx |
|---|
| 289 | ps_merge_my_dbs.o: ps_filebuffer.hxx |
|---|
| 290 | ps_merge_my_dbs.o: ps_node.hxx |
|---|
| 291 | ps_merge_my_dbs.o: ps_tools.hxx |
|---|
| 292 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 293 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 294 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 295 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 296 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 297 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 298 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 299 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 300 | ps_merge_my_dbs.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 301 | |
|---|
| 302 | ps_my2ascii.o: ps_assert.hxx |
|---|
| 303 | ps_my2ascii.o: ps_defs.hxx |
|---|
| 304 | ps_my2ascii.o: ps_filebuffer.hxx |
|---|
| 305 | ps_my2ascii.o: ps_node.hxx |
|---|
| 306 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 307 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 308 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 309 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 310 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 311 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 312 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 313 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 314 | ps_my2ascii.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 315 | |
|---|
| 316 | ps_my2asciipaths.o: ps_assert.hxx |
|---|
| 317 | ps_my2asciipaths.o: ps_defs.hxx |
|---|
| 318 | ps_my2asciipaths.o: ps_filebuffer.hxx |
|---|
| 319 | ps_my2asciipaths.o: ps_node.hxx |
|---|
| 320 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 321 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 322 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 323 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 324 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 325 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 326 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 327 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 328 | ps_my2asciipaths.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 329 | |
|---|
| 330 | ps_node.o: ps_assert.hxx |
|---|
| 331 | ps_node.o: ps_defs.hxx |
|---|
| 332 | ps_node.o: ps_filebuffer.hxx |
|---|
| 333 | ps_node.o: ps_node.hxx |
|---|
| 334 | ps_node.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 335 | ps_node.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 336 | ps_node.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 337 | ps_node.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 338 | ps_node.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 339 | ps_node.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 340 | ps_node.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 341 | ps_node.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 342 | ps_node.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 343 | |
|---|
| 344 | ps_show_result.o: ps_assert.hxx |
|---|
| 345 | ps_show_result.o: ps_bitmap.hxx |
|---|
| 346 | ps_show_result.o: ps_bitset.hxx |
|---|
| 347 | ps_show_result.o: ps_defs.hxx |
|---|
| 348 | ps_show_result.o: ps_filebuffer.hxx |
|---|
| 349 | ps_show_result.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 350 | ps_show_result.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 351 | ps_show_result.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 352 | ps_show_result.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 353 | ps_show_result.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 354 | ps_show_result.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 355 | ps_show_result.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 356 | ps_show_result.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 357 | |
|---|
| 358 | ps_tools.o: ps_tools.hxx |
|---|
| 359 | ps_tools.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 360 | ps_tools.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|