| 1 | .SUFFIXES: .o .a .cxx .depend .stamp |
|---|
| 2 | |
|---|
| 3 | SOURCES=$(wildcard *.cxx) |
|---|
| 4 | HEADERS=$(wildcard *.h) |
|---|
| 5 | OBJECTS= $(subst .cxx,.o,$(SOURCES)) |
|---|
| 6 | ERROR_CHECKER=./show_error_list.pl |
|---|
| 7 | |
|---|
| 8 | $(MAIN): $(OBJECTS) check_error_codes.stamp |
|---|
| 9 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
|---|
| 10 | |
|---|
| 11 | check_error_codes.stamp: $(ERROR_CHECKER) $(SOURCES) $(HEADERS) |
|---|
| 12 | @$(ERROR_CHECKER) -check |
|---|
| 13 | @touch $@ |
|---|
| 14 | |
|---|
| 15 | .cxx.o: |
|---|
| 16 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
|---|
| 17 | |
|---|
| 18 | proto: |
|---|
| 19 | ../AISC_MKPTPS/aisc_mkpt -P -G -w prototypes.h $(OBJECTS:.o=.cxx) >prototypes.h.tmp |
|---|
| 20 | ../SOURCE_TOOLS/mv_if_diff prototypes.h.tmp prototypes.h |
|---|
| 21 | |
|---|
| 22 | clean: |
|---|
| 23 | rm -f *.o $(BINARY) *.stamp |
|---|
| 24 | |
|---|
| 25 | DEPENDS = $(OBJECTS:.o=.depend) |
|---|
| 26 | depends: $(DEPENDS) |
|---|
| 27 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
|---|
| 28 | @rm $(DEPENDS) |
|---|
| 29 | $(DEPENDS): depend.init |
|---|
| 30 | depend.init: |
|---|
| 31 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
|---|
| 32 | .c.depend: |
|---|
| 33 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 34 | .cxx.depend: |
|---|
| 35 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 36 | |
|---|
| 37 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
|---|
| 38 | |
|---|
| 39 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
|---|
| 40 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
|---|
| 41 | |
|---|
| 42 | convert.o: defs.h |
|---|
| 43 | convert.o: embl.h |
|---|
| 44 | convert.o: fun.h |
|---|
| 45 | convert.o: genbank.h |
|---|
| 46 | convert.o: global.h |
|---|
| 47 | convert.o: input_format.h |
|---|
| 48 | convert.o: macke.h |
|---|
| 49 | convert.o: parser.h |
|---|
| 50 | convert.o: prototypes.h |
|---|
| 51 | convert.o: rdp_info.h |
|---|
| 52 | convert.o: reader.h |
|---|
| 53 | convert.o: refs.h |
|---|
| 54 | convert.o: seq.h |
|---|
| 55 | convert.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 56 | convert.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 57 | convert.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 58 | convert.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 59 | convert.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 60 | convert.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 61 | convert.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 62 | convert.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 63 | convert.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 64 | convert.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 65 | convert.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 66 | convert.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 67 | convert.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 68 | |
|---|
| 69 | date.o: fun.h |
|---|
| 70 | date.o: global.h |
|---|
| 71 | date.o: prototypes.h |
|---|
| 72 | date.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 73 | date.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 74 | date.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 75 | date.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 76 | date.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 77 | date.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 78 | date.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 79 | date.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 80 | date.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 81 | date.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 82 | date.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 83 | date.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 84 | date.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 85 | date.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 86 | |
|---|
| 87 | embl.o: defs.h |
|---|
| 88 | embl.o: embl.h |
|---|
| 89 | embl.o: fun.h |
|---|
| 90 | embl.o: genbank.h |
|---|
| 91 | embl.o: global.h |
|---|
| 92 | embl.o: input_format.h |
|---|
| 93 | embl.o: macke.h |
|---|
| 94 | embl.o: parser.h |
|---|
| 95 | embl.o: prototypes.h |
|---|
| 96 | embl.o: rdp_info.h |
|---|
| 97 | embl.o: reader.h |
|---|
| 98 | embl.o: refs.h |
|---|
| 99 | embl.o: seq.h |
|---|
| 100 | embl.o: wrap.h |
|---|
| 101 | embl.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 102 | embl.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 103 | embl.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 104 | embl.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 105 | embl.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 106 | embl.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 107 | embl.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 108 | embl.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 109 | embl.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 110 | embl.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 111 | embl.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 112 | embl.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 113 | embl.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 114 | embl.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 115 | |
|---|
| 116 | fconv.o: defs.h |
|---|
| 117 | fconv.o: fun.h |
|---|
| 118 | fconv.o: global.h |
|---|
| 119 | fconv.o: prototypes.h |
|---|
| 120 | fconv.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 121 | fconv.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 122 | fconv.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 123 | fconv.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 124 | fconv.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 125 | fconv.o: $(ARBHOME)/INCLUDE/arb_diff.h |
|---|
| 126 | fconv.o: $(ARBHOME)/INCLUDE/arb_error.h |
|---|
| 127 | fconv.o: $(ARBHOME)/INCLUDE/arb_file.h |
|---|
| 128 | fconv.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 129 | fconv.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 130 | fconv.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 131 | fconv.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 132 | fconv.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 133 | fconv.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 134 | fconv.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 135 | fconv.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 136 | fconv.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 137 | fconv.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 138 | fconv.o: $(ARBHOME)/INCLUDE/downcast.h |
|---|
| 139 | fconv.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 140 | fconv.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 141 | fconv.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 142 | fconv.o: $(ARBHOME)/INCLUDE/static_assert.h |
|---|
| 143 | fconv.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 144 | fconv.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 145 | |
|---|
| 146 | gcg.o: defs.h |
|---|
| 147 | gcg.o: embl.h |
|---|
| 148 | gcg.o: fun.h |
|---|
| 149 | gcg.o: genbank.h |
|---|
| 150 | gcg.o: global.h |
|---|
| 151 | gcg.o: input_format.h |
|---|
| 152 | gcg.o: macke.h |
|---|
| 153 | gcg.o: parser.h |
|---|
| 154 | gcg.o: prototypes.h |
|---|
| 155 | gcg.o: rdp_info.h |
|---|
| 156 | gcg.o: reader.h |
|---|
| 157 | gcg.o: refs.h |
|---|
| 158 | gcg.o: seq.h |
|---|
| 159 | gcg.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 160 | gcg.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 161 | gcg.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 162 | gcg.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 163 | gcg.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 164 | gcg.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 165 | gcg.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 166 | gcg.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 167 | gcg.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 168 | gcg.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 169 | gcg.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 170 | gcg.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 171 | gcg.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 172 | |
|---|
| 173 | genbank.o: defs.h |
|---|
| 174 | genbank.o: fun.h |
|---|
| 175 | genbank.o: genbank.h |
|---|
| 176 | genbank.o: global.h |
|---|
| 177 | genbank.o: input_format.h |
|---|
| 178 | genbank.o: parser.h |
|---|
| 179 | genbank.o: prototypes.h |
|---|
| 180 | genbank.o: rdp_info.h |
|---|
| 181 | genbank.o: reader.h |
|---|
| 182 | genbank.o: refs.h |
|---|
| 183 | genbank.o: seq.h |
|---|
| 184 | genbank.o: wrap.h |
|---|
| 185 | genbank.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 186 | genbank.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 187 | genbank.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 188 | genbank.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 189 | genbank.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 190 | genbank.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 191 | genbank.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 192 | genbank.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 193 | genbank.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 194 | genbank.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 195 | genbank.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 196 | genbank.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 197 | genbank.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 198 | |
|---|
| 199 | macke.o: defs.h |
|---|
| 200 | macke.o: fun.h |
|---|
| 201 | macke.o: global.h |
|---|
| 202 | macke.o: input_format.h |
|---|
| 203 | macke.o: macke.h |
|---|
| 204 | macke.o: parser.h |
|---|
| 205 | macke.o: prototypes.h |
|---|
| 206 | macke.o: rdp_info.h |
|---|
| 207 | macke.o: reader.h |
|---|
| 208 | macke.o: seq.h |
|---|
| 209 | macke.o: wrap.h |
|---|
| 210 | macke.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 211 | macke.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 212 | macke.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 213 | macke.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 214 | macke.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 215 | macke.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 216 | macke.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 217 | macke.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 218 | macke.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 219 | macke.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 220 | macke.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 221 | macke.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 222 | macke.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 223 | |
|---|
| 224 | main.o: defs.h |
|---|
| 225 | main.o: fun.h |
|---|
| 226 | main.o: global.h |
|---|
| 227 | main.o: prototypes.h |
|---|
| 228 | main.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 229 | main.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 230 | main.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 231 | main.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 232 | main.o: $(ARBHOME)/INCLUDE/arb_msg.h |
|---|
| 233 | main.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 234 | main.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 235 | main.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 236 | main.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 237 | main.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 238 | main.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 239 | main.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 240 | main.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 241 | main.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 242 | main.o: $(ARBHOME)/INCLUDE/test_unit.h |
|---|
| 243 | |
|---|
| 244 | mg.o: defs.h |
|---|
| 245 | mg.o: fun.h |
|---|
| 246 | mg.o: genbank.h |
|---|
| 247 | mg.o: global.h |
|---|
| 248 | mg.o: input_format.h |
|---|
| 249 | mg.o: macke.h |
|---|
| 250 | mg.o: parser.h |
|---|
| 251 | mg.o: prototypes.h |
|---|
| 252 | mg.o: rdp_info.h |
|---|
| 253 | mg.o: reader.h |
|---|
| 254 | mg.o: refs.h |
|---|
| 255 | mg.o: seq.h |
|---|
| 256 | mg.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 257 | mg.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 258 | mg.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 259 | mg.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 260 | mg.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 261 | mg.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 262 | mg.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 263 | mg.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 264 | mg.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 265 | mg.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 266 | mg.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 267 | mg.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 268 | mg.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 269 | |
|---|
| 270 | paup.o: ali.h |
|---|
| 271 | paup.o: defs.h |
|---|
| 272 | paup.o: fun.h |
|---|
| 273 | paup.o: global.h |
|---|
| 274 | paup.o: input_format.h |
|---|
| 275 | paup.o: paup.h |
|---|
| 276 | paup.o: prototypes.h |
|---|
| 277 | paup.o: reader.h |
|---|
| 278 | paup.o: seq.h |
|---|
| 279 | paup.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 280 | paup.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 281 | paup.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 282 | paup.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 283 | paup.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 284 | paup.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 285 | paup.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 286 | paup.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 287 | paup.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 288 | paup.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 289 | paup.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 290 | paup.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 291 | paup.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 292 | |
|---|
| 293 | phylip.o: ali.h |
|---|
| 294 | phylip.o: defs.h |
|---|
| 295 | phylip.o: fun.h |
|---|
| 296 | phylip.o: global.h |
|---|
| 297 | phylip.o: input_format.h |
|---|
| 298 | phylip.o: prototypes.h |
|---|
| 299 | phylip.o: reader.h |
|---|
| 300 | phylip.o: seq.h |
|---|
| 301 | phylip.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 302 | phylip.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 303 | phylip.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 304 | phylip.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 305 | phylip.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 306 | phylip.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 307 | phylip.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 308 | phylip.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 309 | phylip.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 310 | phylip.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 311 | phylip.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 312 | phylip.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 313 | phylip.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 314 | |
|---|
| 315 | printable.o: ali.h |
|---|
| 316 | printable.o: defs.h |
|---|
| 317 | printable.o: fun.h |
|---|
| 318 | printable.o: global.h |
|---|
| 319 | printable.o: input_format.h |
|---|
| 320 | printable.o: prototypes.h |
|---|
| 321 | printable.o: reader.h |
|---|
| 322 | printable.o: seq.h |
|---|
| 323 | printable.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 324 | printable.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 325 | printable.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 326 | printable.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 327 | printable.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 328 | printable.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 329 | printable.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 330 | printable.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 331 | printable.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 332 | printable.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 333 | printable.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 334 | printable.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 335 | printable.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 336 | |
|---|
| 337 | rdp_info.o: defs.h |
|---|
| 338 | rdp_info.o: fun.h |
|---|
| 339 | rdp_info.o: global.h |
|---|
| 340 | rdp_info.o: input_format.h |
|---|
| 341 | rdp_info.o: prototypes.h |
|---|
| 342 | rdp_info.o: rdp_info.h |
|---|
| 343 | rdp_info.o: reader.h |
|---|
| 344 | rdp_info.o: seq.h |
|---|
| 345 | rdp_info.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 346 | rdp_info.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 347 | rdp_info.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 348 | rdp_info.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 349 | rdp_info.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 350 | rdp_info.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 351 | rdp_info.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 352 | rdp_info.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 353 | rdp_info.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 354 | rdp_info.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 355 | rdp_info.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 356 | rdp_info.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 357 | rdp_info.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 358 | |
|---|
| 359 | reader.o: defs.h |
|---|
| 360 | reader.o: fun.h |
|---|
| 361 | reader.o: global.h |
|---|
| 362 | reader.o: input_format.h |
|---|
| 363 | reader.o: prototypes.h |
|---|
| 364 | reader.o: reader.h |
|---|
| 365 | reader.o: seq.h |
|---|
| 366 | reader.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 367 | reader.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 368 | reader.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 369 | reader.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 370 | reader.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 371 | reader.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 372 | reader.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 373 | reader.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 374 | reader.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 375 | reader.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 376 | reader.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 377 | reader.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 378 | reader.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 379 | |
|---|
| 380 | seq.o: ali.h |
|---|
| 381 | seq.o: defs.h |
|---|
| 382 | seq.o: fun.h |
|---|
| 383 | seq.o: global.h |
|---|
| 384 | seq.o: input_format.h |
|---|
| 385 | seq.o: prototypes.h |
|---|
| 386 | seq.o: reader.h |
|---|
| 387 | seq.o: seq.h |
|---|
| 388 | seq.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 389 | seq.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 390 | seq.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 391 | seq.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 392 | seq.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 393 | seq.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 394 | seq.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 395 | seq.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 396 | seq.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 397 | seq.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 398 | seq.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 399 | seq.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 400 | seq.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 401 | |
|---|
| 402 | util.o: defs.h |
|---|
| 403 | util.o: fun.h |
|---|
| 404 | util.o: global.h |
|---|
| 405 | util.o: input_format.h |
|---|
| 406 | util.o: prototypes.h |
|---|
| 407 | util.o: reader.h |
|---|
| 408 | util.o: seq.h |
|---|
| 409 | util.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 410 | util.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 411 | util.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 412 | util.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 413 | util.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 414 | util.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 415 | util.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 416 | util.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 417 | util.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 418 | util.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 419 | util.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 420 | util.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 421 | util.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|
| 422 | |
|---|
| 423 | wrap.o: defs.h |
|---|
| 424 | wrap.o: fun.h |
|---|
| 425 | wrap.o: global.h |
|---|
| 426 | wrap.o: input_format.h |
|---|
| 427 | wrap.o: prototypes.h |
|---|
| 428 | wrap.o: reader.h |
|---|
| 429 | wrap.o: seq.h |
|---|
| 430 | wrap.o: wrap.h |
|---|
| 431 | wrap.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 432 | wrap.o: $(ARBHOME)/INCLUDE/arb_core.h |
|---|
| 433 | wrap.o: $(ARBHOME)/INCLUDE/arb_defs.h |
|---|
| 434 | wrap.o: $(ARBHOME)/INCLUDE/arb_mem.h |
|---|
| 435 | wrap.o: $(ARBHOME)/INCLUDE/arb_string.h |
|---|
| 436 | wrap.o: $(ARBHOME)/INCLUDE/arbtools.h |
|---|
| 437 | wrap.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 438 | wrap.o: $(ARBHOME)/INCLUDE/BufferedFileReader.h |
|---|
| 439 | wrap.o: $(ARBHOME)/INCLUDE/cxxforward.h |
|---|
| 440 | wrap.o: $(ARBHOME)/INCLUDE/dupstr.h |
|---|
| 441 | wrap.o: $(ARBHOME)/INCLUDE/gccver.h |
|---|
| 442 | wrap.o: $(ARBHOME)/INCLUDE/smartptr.h |
|---|
| 443 | wrap.o: $(ARBHOME)/INCLUDE/test_global.h |
|---|