]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | ## Process this file with automake to generate Makefile.in |
2 | ||
3 | AUTOMAKE_OPTIONS = cygnus | |
4 | ||
5 | INCDIR = $(srcdir)/../include | |
6 | CSEARCH = -I. -I$(srcdir) -I$(INCDIR) | |
41b49281 | 7 | MKDEP = gcc -MM |
252b5132 RH |
8 | |
9 | SUBDIRS = doc po | |
10 | ||
11 | docdir = doc | |
a703a6ea AM |
12 | bfdlibdir = @bfdlibdir@ |
13 | bfdincludedir = @bfdincludedir@ | |
252b5132 | 14 | |
a703a6ea | 15 | bfdlib_LTLIBRARIES = libbfd.la |
252b5132 | 16 | |
a2d91340 AC |
17 | WARN_CFLAGS = @WARN_CFLAGS@ |
18 | AM_CFLAGS = $(WARN_CFLAGS) | |
19 | ||
252b5132 RH |
20 | # bfd.h goes here, for now |
21 | BFD_H = bfd.h | |
22 | ||
23 | # Jim Kingdon notes: | |
24 | # Writing S-records should be included in all (or at least most) | |
25 | # *-*-coff, *-*-aout, etc., configurations, because people will want to | |
26 | # be able to use objcopy to create S-records. (S-records are not useful | |
27 | # for the debugger, so if you are downloading things as S-records you | |
28 | # need two copies of the executable, one to download and one for the | |
29 | # debugger). | |
36b45482 | 30 | BFD32_LIBS = \ |
252b5132 RH |
31 | archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo \ |
32 | format.lo init.lo libbfd.lo opncls.lo reloc.lo \ | |
33 | section.lo syms.lo targets.lo hash.lo linker.lo \ | |
51db3708 | 34 | srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \ |
f5fa8ca2 | 35 | merge.lo dwarf2.lo |
252b5132 | 36 | |
36b45482 TS |
37 | BFD64_LIBS = archive64.lo |
38 | ||
39 | BFD32_LIBS_CFILES = \ | |
252b5132 RH |
40 | archive.c archures.c bfd.c cache.c coffgen.c corefile.c \ |
41 | format.c init.c libbfd.c opncls.c reloc.c \ | |
42 | section.c syms.c targets.c hash.c linker.c \ | |
51db3708 | 43 | srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \ |
f5fa8ca2 | 44 | merge.c dwarf2.c |
252b5132 | 45 | |
36b45482 TS |
46 | BFD64_LIBS_CFILES = archive64.c |
47 | ||
252b5132 RH |
48 | # This list is alphabetized to make it easier to keep in sync |
49 | # with the decls and initializer in archures.c. | |
50 | ALL_MACHINES = \ | |
51 | cpu-a29k.lo \ | |
52 | cpu-alpha.lo \ | |
53 | cpu-arc.lo \ | |
54 | cpu-arm.lo \ | |
adde6300 | 55 | cpu-avr.lo \ |
06c15ad7 | 56 | cpu-cris.lo \ |
252b5132 RH |
57 | cpu-d10v.lo \ |
58 | cpu-d30v.lo \ | |
d172d4ba | 59 | cpu-dlx.lo \ |
252b5132 | 60 | cpu-fr30.lo \ |
4e5ba5b7 | 61 | cpu-frv.lo \ |
252b5132 RH |
62 | cpu-h8300.lo \ |
63 | cpu-h8500.lo \ | |
64 | cpu-hppa.lo \ | |
800eeca4 | 65 | cpu-ia64.lo \ |
5b93d8bb | 66 | cpu-i370.lo \ |
252b5132 RH |
67 | cpu-i386.lo \ |
68 | cpu-i860.lo \ | |
69 | cpu-i960.lo \ | |
70 | cpu-m32r.lo \ | |
60bcf0fa NC |
71 | cpu-m68hc11.lo \ |
72 | cpu-m68hc12.lo \ | |
252b5132 RH |
73 | cpu-m68k.lo \ |
74 | cpu-m88k.lo \ | |
75 | cpu-m10200.lo \ | |
76 | cpu-m10300.lo \ | |
77 | cpu-mcore.lo \ | |
78 | cpu-mips.lo \ | |
3c3bdf30 | 79 | cpu-mmix.lo \ |
3b16e843 | 80 | cpu-or32.lo \ |
252b5132 | 81 | cpu-ns32k.lo \ |
b3baf5d0 | 82 | cpu-openrisc.lo \ |
e135f41b | 83 | cpu-pdp11.lo \ |
0bcb993b | 84 | cpu-pj.lo \ |
252b5132 RH |
85 | cpu-powerpc.lo \ |
86 | cpu-rs6000.lo \ | |
a85d7ed0 | 87 | cpu-s390.lo \ |
252b5132 RH |
88 | cpu-sh.lo \ |
89 | cpu-sparc.lo \ | |
90 | cpu-tic30.lo \ | |
81635ce4 | 91 | cpu-tic54x.lo \ |
252b5132 RH |
92 | cpu-tic80.lo \ |
93 | cpu-v850.lo \ | |
94 | cpu-vax.lo \ | |
95 | cpu-we32k.lo \ | |
96 | cpu-w65.lo \ | |
93fbbb04 | 97 | cpu-xstormy16.lo \ |
252b5132 RH |
98 | cpu-z8k.lo |
99 | ||
100 | ALL_MACHINES_CFILES = \ | |
101 | cpu-a29k.c \ | |
102 | cpu-alpha.c \ | |
103 | cpu-arc.c \ | |
104 | cpu-arm.c \ | |
adde6300 | 105 | cpu-avr.c \ |
06c15ad7 | 106 | cpu-cris.c \ |
252b5132 RH |
107 | cpu-d10v.c \ |
108 | cpu-d30v.c \ | |
d172d4ba | 109 | cpu-dlx.c \ |
252b5132 | 110 | cpu-fr30.c \ |
4e5ba5b7 | 111 | cpu-frv.c \ |
252b5132 RH |
112 | cpu-h8300.c \ |
113 | cpu-h8500.c \ | |
114 | cpu-hppa.c \ | |
800eeca4 | 115 | cpu-ia64.c \ |
5b93d8bb | 116 | cpu-i370.c \ |
252b5132 RH |
117 | cpu-i386.c \ |
118 | cpu-i860.c \ | |
119 | cpu-i960.c \ | |
120 | cpu-m32r.c \ | |
60bcf0fa NC |
121 | cpu-m68hc11.c \ |
122 | cpu-m68hc12.c \ | |
252b5132 RH |
123 | cpu-m68k.c \ |
124 | cpu-m88k.c \ | |
125 | cpu-m10200.c \ | |
126 | cpu-m10300.c \ | |
127 | cpu-mcore.c \ | |
128 | cpu-mips.c \ | |
3c3bdf30 | 129 | cpu-mmix.c \ |
3b16e843 | 130 | cpu-or32.c \ |
252b5132 | 131 | cpu-ns32k.c \ |
b3baf5d0 | 132 | cpu-openrisc.c \ |
e135f41b | 133 | cpu-pdp11.c \ |
0bcb993b | 134 | cpu-pj.c \ |
252b5132 RH |
135 | cpu-powerpc.c \ |
136 | cpu-rs6000.c \ | |
a85d7ed0 | 137 | cpu-s390.c \ |
252b5132 RH |
138 | cpu-sh.c \ |
139 | cpu-sparc.c \ | |
140 | cpu-tic30.c \ | |
81635ce4 | 141 | cpu-tic54x.c \ |
252b5132 RH |
142 | cpu-tic80.c \ |
143 | cpu-v850.c \ | |
144 | cpu-vax.c \ | |
145 | cpu-we32k.c \ | |
146 | cpu-w65.c \ | |
93fbbb04 | 147 | cpu-xstormy16.c \ |
252b5132 RH |
148 | cpu-z8k.c |
149 | ||
150 | # The .o files needed by all of the 32 bit vectors that are configured into | |
151 | # target_vector in targets.c if configured with --enable-targets=all. | |
152 | BFD32_BACKENDS = \ | |
153 | aout-adobe.lo \ | |
154 | aout-arm.lo \ | |
06c15ad7 | 155 | aout-cris.lo \ |
252b5132 RH |
156 | aout-ns32k.lo \ |
157 | aout-sparcle.lo \ | |
158 | aout-tic30.lo \ | |
159 | aout0.lo \ | |
160 | aout32.lo \ | |
021e3cc0 | 161 | armnetbsd.lo \ |
252b5132 RH |
162 | bout.lo \ |
163 | cf-i386lynx.lo \ | |
164 | cf-m68klynx.lo \ | |
165 | cf-sparclynx.lo \ | |
166 | coff-a29k.lo \ | |
167 | coff-apollo.lo \ | |
168 | coff-arm.lo \ | |
169 | coff-aux.lo \ | |
170 | coff-h8300.lo \ | |
171 | coff-h8500.lo \ | |
172 | coff-i386.lo \ | |
173 | coff-go32.lo \ | |
174 | coff-i860.lo \ | |
175 | coff-i960.lo \ | |
176 | coff-m68k.lo \ | |
177 | coff-m88k.lo \ | |
178 | coff-mips.lo \ | |
3b16e843 | 179 | coff-or32.lo \ |
252b5132 RH |
180 | coff-rs6000.lo \ |
181 | coff-sh.lo \ | |
182 | coff-sparc.lo \ | |
183 | coff-stgo32.lo \ | |
184 | coff-svm68k.lo \ | |
185 | coff-tic30.lo \ | |
81635ce4 | 186 | coff-tic54x.lo \ |
252b5132 RH |
187 | coff-tic80.lo \ |
188 | coff-u68k.lo \ | |
189 | coff-we32k.lo \ | |
190 | coff-w65.lo \ | |
191 | coff-z8k.lo \ | |
192 | cofflink.lo \ | |
4a54b465 | 193 | dwarf1.lo \ |
252b5132 RH |
194 | ecoff.lo \ |
195 | ecofflink.lo \ | |
85e22c7e | 196 | efi-app-ia32.lo \ |
252b5132 RH |
197 | elf.lo \ |
198 | elf32-arc.lo \ | |
199 | elfarm-oabi.lo \ | |
200 | elfarm-nabi.lo \ | |
adde6300 | 201 | elf32-avr.lo \ |
06c15ad7 | 202 | elf32-cris.lo \ |
252b5132 RH |
203 | elf32-d10v.lo \ |
204 | elf32-d30v.lo \ | |
d172d4ba | 205 | elf32-dlx.lo \ |
252b5132 | 206 | elf32-fr30.lo \ |
4e5ba5b7 | 207 | elf32-frv.lo \ |
252b5132 | 208 | elf32-gen.lo \ |
ee8a3a3b | 209 | elf32-h8300.lo \ |
e0afaebd | 210 | elf32-hppa.lo \ |
5b93d8bb | 211 | elf32-i370.lo \ |
252b5132 | 212 | elf32-i386.lo \ |
caf47ea6 | 213 | elf32-i386qnx.lo \ |
252b5132 | 214 | elf32-i860.lo \ |
b2ef150d | 215 | elf32-i960.lo \ |
bbe66d08 | 216 | elf32-ia64.lo \ |
252b5132 | 217 | elf32-m32r.lo \ |
60bcf0fa NC |
218 | elf32-m68hc11.lo \ |
219 | elf32-m68hc12.lo \ | |
252b5132 RH |
220 | elf32-m68k.lo \ |
221 | elf32-m88k.lo \ | |
222 | elf-m10200.lo \ | |
223 | elf-m10300.lo \ | |
224 | elf32-mcore.lo \ | |
c6e90b02 | 225 | elfxx-mips.lo \ |
252b5132 | 226 | elf32-mips.lo \ |
b3baf5d0 | 227 | elf32-openrisc.lo \ |
3b16e843 | 228 | elf32-or32.lo \ |
0bcb993b | 229 | elf32-pj.lo \ |
252b5132 | 230 | elf32-ppc.lo \ |
a85d7ed0 | 231 | elf32-s390.lo \ |
252b5132 | 232 | elf32-sh.lo \ |
b129bfef | 233 | elf32-sh-lin.lo \ |
fbca6ad9 | 234 | elf32-sh64.lo \ |
9cba27b2 | 235 | elf32-sh64-com.lo \ |
8d05742f | 236 | elf32-sh-nbsd.lo \ |
5b0e55b6 | 237 | elf32-sh64-nbsd.lo \ |
252b5132 RH |
238 | elf32-sparc.lo \ |
239 | elf32-v850.lo \ | |
90ace9e9 | 240 | elf32-vax.lo \ |
93fbbb04 | 241 | elf32-xstormy16.lo \ |
252b5132 RH |
242 | elf32.lo \ |
243 | elflink.lo \ | |
2b0f7ef9 | 244 | elf-strtab.lo \ |
65765700 | 245 | elf-eh-frame.lo \ |
10ab5357 NC |
246 | epoc-pe-arm.lo \ |
247 | epoc-pei-arm.lo \ | |
252b5132 RH |
248 | hp300bsd.lo \ |
249 | hp300hpux.lo \ | |
250 | som.lo \ | |
251 | i386aout.lo \ | |
252 | i386bsd.lo \ | |
253 | i386dynix.lo \ | |
254 | i386freebsd.lo \ | |
255 | i386linux.lo \ | |
256 | i386lynx.lo \ | |
257 | i386msdos.lo \ | |
258 | i386netbsd.lo \ | |
259 | i386mach3.lo \ | |
260 | i386os9k.lo \ | |
261 | ieee.lo \ | |
262 | m68k4knetbsd.lo \ | |
263 | m68klinux.lo \ | |
264 | m68klynx.lo \ | |
265 | m68knetbsd.lo \ | |
266 | m88kmach3.lo \ | |
267 | mipsbsd.lo \ | |
268 | newsos3.lo \ | |
269 | nlm.lo \ | |
270 | nlm32-i386.lo \ | |
271 | nlm32-sparc.lo \ | |
272 | nlm32-ppc.lo \ | |
273 | nlm32.lo \ | |
274 | ns32knetbsd.lo \ | |
275 | oasys.lo \ | |
276 | pc532-mach.lo \ | |
e135f41b | 277 | pdp11.lo \ |
252b5132 RH |
278 | pe-arm.lo \ |
279 | pei-arm.lo \ | |
280 | pe-i386.lo \ | |
281 | pei-i386.lo \ | |
282 | pe-mcore.lo \ | |
283 | pei-mcore.lo \ | |
284 | pe-ppc.lo \ | |
285 | pei-ppc.lo \ | |
17505c5c NC |
286 | pe-sh.lo \ |
287 | pei-sh.lo \ | |
288 | pe-mips.lo \ | |
289 | pei-mips.lo \ | |
277d1b5e | 290 | peigen.lo \ |
252b5132 RH |
291 | ppcboot.lo \ |
292 | reloc16.lo \ | |
293 | riscix.lo \ | |
294 | sparclinux.lo \ | |
295 | sparclynx.lo \ | |
296 | sparcnetbsd.lo \ | |
297 | sunos.lo \ | |
298 | vaxnetbsd.lo \ | |
3c2bfad6 | 299 | vax1knetbsd.lo \ |
252b5132 RH |
300 | versados.lo \ |
301 | vms.lo \ | |
302 | vms-gsd.lo \ | |
303 | vms-hdr.lo \ | |
304 | vms-misc.lo \ | |
305 | vms-tir.lo \ | |
306 | xcofflink.lo | |
307 | ||
308 | BFD32_BACKENDS_CFILES = \ | |
309 | aout-adobe.c \ | |
310 | aout-arm.c \ | |
06c15ad7 | 311 | aout-cris.c \ |
252b5132 RH |
312 | aout-ns32k.c \ |
313 | aout-sparcle.c \ | |
314 | aout-tic30.c \ | |
315 | aout0.c \ | |
316 | aout32.c \ | |
021e3cc0 | 317 | armnetbsd.c \ |
252b5132 RH |
318 | bout.c \ |
319 | cf-i386lynx.c \ | |
320 | cf-m68klynx.c \ | |
321 | cf-sparclynx.c \ | |
322 | coff-a29k.c \ | |
323 | coff-apollo.c \ | |
324 | coff-arm.c \ | |
325 | coff-aux.c \ | |
326 | coff-h8300.c \ | |
327 | coff-h8500.c \ | |
328 | coff-i386.c \ | |
329 | coff-i860.c \ | |
330 | coff-go32.c \ | |
331 | coff-i960.c \ | |
332 | coff-m68k.c \ | |
333 | coff-m88k.c \ | |
334 | coff-mips.c \ | |
3b16e843 | 335 | coff-or32.c \ |
252b5132 RH |
336 | coff-rs6000.c \ |
337 | coff-sh.c \ | |
338 | coff-sparc.c \ | |
339 | coff-stgo32.c \ | |
340 | coff-svm68k.c \ | |
341 | coff-tic30.c \ | |
81635ce4 | 342 | coff-tic54x.c \ |
252b5132 RH |
343 | coff-tic80.c \ |
344 | coff-u68k.c \ | |
345 | coff-we32k.c \ | |
346 | coff-w65.c \ | |
347 | coff-z8k.c \ | |
348 | cofflink.c \ | |
4a54b465 | 349 | dwarf1.c \ |
252b5132 RH |
350 | ecoff.c \ |
351 | ecofflink.c \ | |
85e22c7e | 352 | efi-app-ia32.c \ |
252b5132 RH |
353 | elf.c \ |
354 | elf32-arc.c \ | |
355 | elfarm-oabi.c \ | |
356 | elfarm-nabi.c \ | |
adde6300 | 357 | elf32-avr.c \ |
06c15ad7 | 358 | elf32-cris.c \ |
252b5132 RH |
359 | elf32-d10v.c \ |
360 | elf32-d30v.c \ | |
d172d4ba | 361 | elf32-dlx.c \ |
252b5132 | 362 | elf32-fr30.c \ |
4e5ba5b7 | 363 | elf32-frv.c \ |
252b5132 | 364 | elf32-gen.c \ |
ee8a3a3b | 365 | elf32-h8300.c \ |
3f9b03b5 | 366 | elf32-hppa.c \ |
5b93d8bb | 367 | elf32-i370.c \ |
252b5132 | 368 | elf32-i386.c \ |
caf47ea6 | 369 | elf32-i386qnx.c \ |
252b5132 | 370 | elf32-i860.c \ |
b2ef150d | 371 | elf32-i960.c \ |
252b5132 RH |
372 | elf32-m32r.c \ |
373 | elf32-m68k.c \ | |
60bcf0fa NC |
374 | elf32-m68hc11.c \ |
375 | elf32-m68hc12.c \ | |
252b5132 RH |
376 | elf32-m88k.c \ |
377 | elf-m10200.c \ | |
378 | elf-m10300.c \ | |
379 | elf32-mcore.c \ | |
c6e90b02 | 380 | elfxx-mips.c \ |
252b5132 | 381 | elf32-mips.c \ |
b3baf5d0 | 382 | elf32-openrisc.c \ |
3b16e843 | 383 | elf32-or32.c \ |
0bcb993b | 384 | elf32-pj.c \ |
252b5132 | 385 | elf32-ppc.c \ |
fbca6ad9 | 386 | elf32-sh64.c \ |
9cba27b2 | 387 | elf32-sh64-com.c \ |
a85d7ed0 | 388 | elf32-s390.c \ |
252b5132 | 389 | elf32-sh.c \ |
b129bfef | 390 | elf32-sh-lin.c \ |
8d05742f | 391 | elf32-sh-nbsd.c \ |
5b0e55b6 | 392 | elf32-sh64-nbsd.c \ |
252b5132 RH |
393 | elf32-sparc.c \ |
394 | elf32-v850.c \ | |
90ace9e9 | 395 | elf32-vax.c \ |
93fbbb04 | 396 | elf32-xstormy16.c \ |
252b5132 RH |
397 | elf32.c \ |
398 | elflink.c \ | |
2b0f7ef9 | 399 | elf-strtab.c \ |
65765700 | 400 | elf-eh-frame.c \ |
10ab5357 NC |
401 | epoc-pe-arm.c \ |
402 | epoc-pei-arm.c \ | |
252b5132 RH |
403 | hp300bsd.c \ |
404 | hp300hpux.c \ | |
405 | som.c \ | |
406 | i386aout.c \ | |
407 | i386bsd.c \ | |
408 | i386dynix.c \ | |
409 | i386freebsd.c \ | |
410 | i386linux.c \ | |
411 | i386lynx.c \ | |
412 | i386msdos.c \ | |
413 | i386netbsd.c \ | |
414 | i386mach3.c \ | |
415 | i386os9k.c \ | |
416 | ieee.c \ | |
417 | m68k4knetbsd.c \ | |
418 | m68klinux.c \ | |
419 | m68klynx.c \ | |
420 | m68knetbsd.c \ | |
421 | m88kmach3.c \ | |
422 | mipsbsd.c \ | |
423 | newsos3.c \ | |
424 | nlm.c \ | |
425 | nlm32-i386.c \ | |
426 | nlm32-sparc.c \ | |
427 | nlm32-ppc.c \ | |
428 | nlm32.c \ | |
429 | ns32knetbsd.c \ | |
430 | oasys.c \ | |
431 | pc532-mach.c \ | |
e135f41b | 432 | pdp11.c \ |
252b5132 RH |
433 | pe-arm.c \ |
434 | pei-arm.c \ | |
435 | pe-i386.c \ | |
436 | pei-i386.c \ | |
437 | pe-mcore.c \ | |
438 | pei-mcore.c \ | |
439 | pe-ppc.c \ | |
440 | pei-ppc.c \ | |
17505c5c NC |
441 | pe-sh.c \ |
442 | pei-sh.c \ | |
443 | pe-mips.c \ | |
444 | pei-mips.c \ | |
252b5132 RH |
445 | ppcboot.c \ |
446 | reloc16.c \ | |
447 | riscix.c \ | |
448 | sparclinux.c \ | |
449 | sparclynx.c \ | |
450 | sparcnetbsd.c \ | |
451 | sunos.c \ | |
452 | vaxnetbsd.c \ | |
3c2bfad6 | 453 | vax1knetbsd.c \ |
252b5132 RH |
454 | versados.c \ |
455 | vms.c \ | |
456 | vms-gsd.c \ | |
457 | vms-hdr.c \ | |
458 | vms-misc.c \ | |
459 | vms-tir.c \ | |
460 | xcofflink.c | |
461 | ||
462 | # The .o files needed by all of the 64 bit vectors that are configured into | |
463 | # target_vector in targets.c if configured with --enable-targets=all | |
464 | # and --enable-64-bit-bfd. | |
465 | BFD64_BACKENDS = \ | |
eb1e0e80 | 466 | aix5ppc-core.lo \ |
252b5132 RH |
467 | aout64.lo \ |
468 | coff-alpha.lo \ | |
14958a43 | 469 | coff64-rs6000.lo \ |
252b5132 | 470 | demo64.lo \ |
85e22c7e | 471 | efi-app-ia64.lo \ |
8d88c4ca | 472 | elf64-x86-64.lo \ |
252b5132 | 473 | elf64-alpha.lo \ |
d403336c | 474 | elf64-hppa.lo \ |
800eeca4 | 475 | elf64-ia64.lo \ |
252b5132 RH |
476 | elf64-gen.lo \ |
477 | elf64-mips.lo \ | |
3c3bdf30 | 478 | elf64-mmix.lo \ |
fbca6ad9 | 479 | elf64-sh64.lo \ |
5b0e55b6 | 480 | elf64-sh64-nbsd.lo \ |
5bd4f169 | 481 | elf64-ppc.lo \ |
a85d7ed0 | 482 | elf64-s390.lo \ |
252b5132 RH |
483 | elf64-sparc.lo \ |
484 | elf64.lo \ | |
3c3bdf30 | 485 | mmo.lo \ |
252b5132 | 486 | nlm32-alpha.lo \ |
825b47db NC |
487 | nlm64.lo \ |
488 | pepigen.lo | |
252b5132 RH |
489 | |
490 | BFD64_BACKENDS_CFILES = \ | |
eb1e0e80 | 491 | aix5ppc-core.c \ |
252b5132 RH |
492 | aout64.c \ |
493 | coff-alpha.c \ | |
14958a43 | 494 | coff64-rs6000.c \ |
252b5132 | 495 | demo64.c \ |
85e22c7e | 496 | efi-app-ia64.c \ |
8d88c4ca | 497 | elf64-x86-64.c \ |
252b5132 | 498 | elf64-alpha.c \ |
d403336c | 499 | elf64-hppa.c \ |
252b5132 RH |
500 | elf64-gen.c \ |
501 | elf64-mips.c \ | |
3c3bdf30 | 502 | elf64-mmix.c \ |
5bd4f169 | 503 | elf64-ppc.c \ |
a85d7ed0 | 504 | elf64-s390.c \ |
fbca6ad9 | 505 | elf64-sh64.c \ |
5b0e55b6 | 506 | elf64-sh64-nbsd.c \ |
252b5132 RH |
507 | elf64-sparc.c \ |
508 | elf64.c \ | |
3c3bdf30 | 509 | mmo.c \ |
252b5132 RH |
510 | nlm32-alpha.c \ |
511 | nlm64.c | |
512 | ||
513 | OPTIONAL_BACKENDS = \ | |
514 | aix386-core.lo \ | |
515 | hpux-core.lo \ | |
516 | irix-core.lo \ | |
517 | lynx-core.lo \ | |
518 | osf-core.lo \ | |
519 | sco5-core.lo \ | |
520 | trad-core.lo \ | |
521 | cisco-core.lo | |
522 | ||
523 | OPTIONAL_BACKENDS_CFILES = \ | |
524 | aix386-core.c \ | |
525 | hpux-core.c \ | |
526 | irix-core.c \ | |
527 | lynx-core.c \ | |
528 | osf-core.c \ | |
529 | sco5-core.c \ | |
530 | trad-core.c \ | |
531 | cisco-core.c | |
532 | ||
533 | # These are defined by configure.in: | |
534 | WORDSIZE = @wordsize@ | |
535 | ALL_BACKENDS = @all_backends@ | |
536 | BFD_BACKENDS = @bfd_backends@ | |
36b45482 | 537 | BFD_LIBS = @bfd_libs@ |
252b5132 RH |
538 | BFD_MACHINES = @bfd_machines@ |
539 | TDEFAULTS = @tdefaults@ | |
540 | ||
541 | INCLUDES = -D_GNU_SOURCE @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl | |
542 | ||
543 | # C source files that correspond to .o's. | |
27b7e12d | 544 | SOURCE_CFILES = \ |
36b45482 TS |
545 | $(BFD32_LIBS_CFILES) \ |
546 | $(BFD64_LIBS_CFILES) \ | |
252b5132 RH |
547 | $(ALL_MACHINES_CFILES) \ |
548 | $(BFD32_BACKENDS_CFILES) \ | |
549 | $(BFD64_BACKENDS_CFILES) \ | |
550 | $(OPTIONAL_BACKENDS_CFILES) | |
551 | ||
55c80943 | 552 | BUILD_CFILES = \ |
27b7e12d AM |
553 | elf32-ia64.c elf64-ia64.c peigen.c pepigen.c |
554 | ||
55c80943 NC |
555 | CFILES = $(SOURCE_CFILES) $(BUILD_CFILES) |
556 | ||
252b5132 RH |
557 | ## This is a list of all .h files which are in the source tree. |
558 | SOURCE_HFILES = \ | |
3f9b03b5 AM |
559 | aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \ |
560 | elf-bfd.h elf-hppa.h elf32-arm.h elf32-hppa.h elf64-hppa.h \ | |
561 | elfcode.h elfcore.h elflink.h freebsd.h genlink.h go32stub.h \ | |
edd21aca | 562 | libaout.h libbfd.h libcoff.h libecoff.h libhppa.h \ |
3f9b03b5 | 563 | libieee.h libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h \ |
4e8a9624 | 564 | nlmcode.h nlmswap.h ns32k.h peicode.h som.h vms.h libxcoff.h \ |
87b632fc | 565 | xcoff-target.h version.h |
252b5132 | 566 | |
55c80943 NC |
567 | ## ... and all .h files which are in the build tree. |
568 | BUILD_HFILES = \ | |
569 | elf32-target.h elf64-target.h targmatch.h | |
570 | ||
571 | HFILES = $(SOURCE_HFILES) $(BUILD_HFILES) | |
572 | ||
573 | SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES) | |
574 | BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES) | |
252b5132 | 575 | |
55c80943 | 576 | po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES) |
01467f2a L |
577 | for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp.src \ |
578 | && mv tmp.src $(srcdir)/po/SRC-POTFILES.in | |
55c80943 NC |
579 | |
580 | po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES) | |
01467f2a L |
581 | for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp.bld \ |
582 | && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in | |
55c80943 NC |
583 | |
584 | # The following target is retained for upgrade purposes. | |
585 | # This target used to exist in older versions of this makefile, and was | |
586 | # referenced by <builddir>/po/Makefile (which is created from <srcdir>/po/Make-in) | |
587 | # So old versions of <builddir>/po/Makefile will try to regenerate themselves | |
588 | # when make is next run, but that dependency cannot be completed without a build | |
589 | # of po/POTFILES.in. Hence the presence of this rule. This rule will be deleted | |
590 | # once it is no longer needed - probably in the fall of 2001. | |
591 | po/POTFILES.in: | |
252b5132 | 592 | |
252b5132 RH |
593 | |
594 | diststuff: info | |
595 | ||
596 | # Various kinds of .o files to put in libbfd.a: | |
597 | # BFD_BACKENDS Routines the configured targets need. | |
598 | # BFD_MACHINES Architecture-specific routines the configured targets need. | |
599 | # COREFILE Core file routines for a native configuration | |
600 | OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ | |
601 | ||
602 | stamp-ofiles: Makefile | |
603 | rm -f tofiles | |
604 | f=""; \ | |
605 | for i in $(OFILES) ; do \ | |
606 | case " $$f " in \ | |
607 | *" $$i "*) ;; \ | |
608 | *) f="$$f $$i" ;; \ | |
609 | esac ; \ | |
610 | done ; \ | |
611 | echo $$f > tofiles | |
612 | $(SHELL) $(srcdir)/../move-if-change tofiles ofiles | |
613 | touch stamp-ofiles | |
614 | ||
615 | ofiles: stamp-ofiles ; @true | |
616 | ||
36b45482 | 617 | libbfd_la_SOURCES = $(BFD32_LIBS_CFILES) $(BFD64_LIBS_CFILES) |
252b5132 RH |
618 | libbfd_la_DEPENDENCIES = $(OFILES) ofiles |
619 | libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@ | |
620 | libbfd_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@ | |
621 | ||
622 | # libtool will build .libs/libbfd.a. We create libbfd.a in the build | |
623 | # directory so that we don't have to convert all the programs that use | |
624 | # libbfd.a simultaneously. This is a hack which should be removed if | |
625 | # everything else starts using libtool. FIXME. | |
626 | ||
627 | noinst_LIBRARIES = libbfd.a | |
628 | libbfd_a_SOURCES = | |
629 | ||
630 | stamp-lib: libbfd.la | |
e56f75e9 ILT |
631 | libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \ |
632 | if [ -f $$libtooldir/libbfd.a ]; then \ | |
633 | cp $$libtooldir/libbfd.a libbfd.tmp; \ | |
9f93bca5 | 634 | $(RANLIB) libbfd.tmp; \ |
252b5132 RH |
635 | $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \ |
636 | else true; fi | |
637 | touch stamp-lib | |
638 | ||
639 | libbfd.a: stamp-lib ; @true | |
640 | ||
641 | # This file holds an array associating configuration triplets and | |
642 | # vector names. It is built from config.bfd. It is not compiled by | |
643 | # itself, but is included by targets.c. | |
644 | targmatch.h: config.bfd targmatch.sed | |
645 | rm -f targmatch.h | |
646 | sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new | |
647 | mv -f targmatch.new targmatch.h | |
648 | ||
649 | # When compiling archures.c and targets.c, supply the default target | |
650 | # info from configure. | |
651 | ||
652 | targets.lo: targets.c config.status | |
653 | $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/targets.c | |
654 | ||
655 | archures.lo: archures.c config.status | |
656 | $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/archures.c | |
657 | ||
658 | elf32-target.h : elfxx-target.h | |
659 | rm -f elf32-target.h | |
660 | sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new | |
661 | mv -f elf32-target.new elf32-target.h | |
662 | ||
663 | elf64-target.h : elfxx-target.h | |
664 | rm -f elf64-target.h | |
665 | sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new | |
666 | mv -f elf64-target.new elf64-target.h | |
667 | ||
bbe66d08 JW |
668 | elf32-ia64.c : elfxx-ia64.c |
669 | rm -f elf32-ia64.c | |
670 | sed -e s/NN/32/g < $(srcdir)/elfxx-ia64.c > elf32-ia64.new | |
671 | mv -f elf32-ia64.new elf32-ia64.c | |
672 | ||
673 | elf64-ia64.c : elfxx-ia64.c | |
674 | rm -f elf64-ia64.c | |
675 | sed -e s/NN/64/g < $(srcdir)/elfxx-ia64.c > elf64-ia64.new | |
676 | mv -f elf64-ia64.new elf64-ia64.c | |
677 | ||
825b47db NC |
678 | peigen.c : peXXigen.c |
679 | rm -f peigen.c | |
680 | sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new | |
681 | mv -f peigen.new peigen.c | |
682 | ||
683 | pepigen.c : peXXigen.c | |
684 | rm -f pepigen.c | |
685 | sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new | |
686 | mv -f pepigen.new pepigen.c | |
687 | ||
b13c7b49 | 688 | BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h |
252b5132 | 689 | LOCAL_H_DEPS= libbfd.h sysdep.h config.h |
36b45482 TS |
690 | $(BFD32_LIBS) \ |
691 | $(BFD64_LIBS) \ | |
b13c7b49 AM |
692 | $(ALL_MACHINES) \ |
693 | $(BFD32_BACKENDS) \ | |
694 | $(BFD64_BACKENDS) \ | |
695 | $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS) | |
252b5132 | 696 | |
a703a6ea | 697 | install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libbfd |
252b5132 | 698 | @$(NORMAL_INSTALL) |
a703a6ea AM |
699 | |
700 | uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libbfd | |
701 | @$(NORMAL_UNINSTALL) | |
702 | ||
703 | .PHONY: install_libbfd uninstall_libbfd | |
704 | install_libbfd: $(bfdlib_LTLIBRARIES) $(BFD_H) | |
705 | $(mkinstalldirs) $(DESTDIR)$(bfdlibdir) | |
706 | $(mkinstalldirs) $(DESTDIR)$(bfdincludedir) | |
707 | @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \ | |
708 | if test -f $$p; then \ | |
709 | echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \ | |
710 | $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \ | |
711 | else :; fi; \ | |
712 | done | |
713 | $(INSTALL_DATA) $(BFD_H) $(DESTDIR)$(bfdincludedir)/bfd.h | |
714 | $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(DESTDIR)$(bfdincludedir)/ansidecl.h | |
715 | $(INSTALL_DATA) $(INCDIR)/symcat.h $(DESTDIR)$(bfdincludedir)/symcat.h | |
716 | $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(DESTDIR)$(bfdincludedir)/bfdlink.h | |
717 | ||
718 | uninstall_libbfd: | |
719 | list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \ | |
720 | $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \ | |
721 | done | |
722 | rm -f $(DESTDIR)$(bfdincludedir)/bfd.h | |
723 | rm -f $(DESTDIR)$(bfdincludedir)/ansidecl.h | |
724 | rm -f $(DESTDIR)$(bfdincludedir)/symcat.h | |
725 | rm -f $(DESTDIR)$(bfdincludedir)/bfdlink.h | |
ee0bebb8 | 726 | |
e43d48cc | 727 | Makefile: $(srcdir)/configure.in |
252b5132 | 728 | |
74eeebea ILT |
729 | # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES). |
730 | DEP: dep.sed $(CFILES) $(HFILES) bfd.h | |
731 | rm -f DEP1 | |
41b49281 | 732 | $(MAKE) MKDEP="$(MKDEP)" DEP1 |
0bdaf48b AM |
733 | sed -f dep.sed < DEP1 > DEPA |
734 | echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA | |
735 | if grep ' /' DEPA > /dev/null 2> /dev/null; then \ | |
1581f8c9 AM |
736 | echo 'make DEP failed!'; exit 1; \ |
737 | else \ | |
0bdaf48b | 738 | mv -f DEPA $@; \ |
1581f8c9 | 739 | fi |
41b49281 | 740 | |
74eeebea | 741 | DEP1: $(CFILES) |
74eeebea | 742 | echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 |
41b49281 AM |
743 | echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 |
744 | $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 | |
745 | mv -f DEP2 $@ | |
252b5132 RH |
746 | |
747 | dep.sed: dep-in.sed config.status | |
748 | sed <$(srcdir)/dep-in.sed >dep.sed \ | |
749 | -e 's!@BFD_H@!$(BFD_H)!' \ | |
830629ab AM |
750 | -e 's!@SRCDIR@!$(srcdir)!' \ |
751 | -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/bfd$$,,`'!' | |
252b5132 | 752 | |
74eeebea | 753 | dep: DEP |
252b5132 | 754 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile |
74eeebea | 755 | cat DEP >> tmp-Makefile |
252b5132 RH |
756 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile |
757 | ||
74eeebea | 758 | dep-in: DEP |
252b5132 | 759 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in |
74eeebea | 760 | cat DEP >> tmp-Makefile.in |
252b5132 RH |
761 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in |
762 | ||
74eeebea | 763 | dep-am: DEP |
252b5132 | 764 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am |
74eeebea | 765 | cat DEP >> tmp-Makefile.am |
252b5132 RH |
766 | $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am |
767 | ||
768 | host-aout.lo: Makefile | |
769 | ||
770 | # The following program can be used to generate a simple config file | |
771 | # which can be folded into an h-XXX file for a new host, with some editing. | |
772 | aout-params.h: gen-aout | |
773 | ./gen-aout host > aout-params.h | |
774 | gen-aout: $(srcdir)/gen-aout.c Makefile | |
775 | $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c | |
776 | ||
777 | $(BFD_H): stmp-bfd-h ; @true | |
778 | ||
779 | stmp-bfd-h: bfd-in3.h | |
780 | rm -f bfd-tmp.h | |
781 | cp bfd-in3.h bfd-tmp.h | |
782 | $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H) | |
783 | rm -f bfd-tmp.h | |
784 | touch stmp-bfd-h | |
785 | ||
786 | BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \ | |
87b632fc | 787 | reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c version.h |
36b45482 | 788 | BFD64_H_FILES = archive64.c |
252b5132 RH |
789 | LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c |
790 | LIBCOFF_H_FILES = libcoff-in.h coffcode.h | |
791 | ||
792 | # Could really use a "copy-if-change"... | |
793 | headers: | |
794 | (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS)) | |
795 | cp $(docdir)/bfd.h bfd-in2.h-new | |
796 | $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h | |
797 | cp $(docdir)/libbfd.h libbfd.h-new | |
798 | $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
799 | cp $(docdir)/libcoff.h libcoff.h-new | |
800 | $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
801 | ||
802 | # We only rebuild the header files automatically if we have been | |
803 | # configured with --enable-maintainer-mode. | |
804 | ||
805 | $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true | |
36b45482 | 806 | stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES) |
252b5132 RH |
807 | (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h) |
808 | cp $(docdir)/bfd.h bfd-in2.h-new | |
809 | $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h | |
810 | touch stmp-bin2-h | |
811 | ||
812 | $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true | |
813 | stmp-lbfd-h: $(LIBBFD_H_FILES) | |
814 | (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h) | |
815 | cp $(docdir)/libbfd.h libbfd.h-new | |
816 | $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h | |
817 | touch stmp-lbfd-h | |
818 | ||
819 | $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true | |
820 | stmp-lcoff-h: $(LIBCOFF_H_FILES) | |
821 | (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h) | |
822 | cp $(docdir)/libcoff.h libcoff.h-new | |
823 | $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h | |
824 | touch stmp-lcoff-h | |
825 | ||
55c80943 | 826 | MOSTLYCLEANFILES = ofiles stamp-ofiles |
252b5132 | 827 | |
0bdaf48b | 828 | CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \ |
252b5132 RH |
829 | stmp-bin2-h stmp-lbfd-h stmp-lcoff-h |
830 | ||
55c80943 NC |
831 | DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) |
832 | ||
252b5132 RH |
833 | # We want to rerun configure if config.bfd or configure.host change. |
834 | config.status: $(srcdir)/configure $(srcdir)/config.bfd $(srcdir)/configure.host | |
835 | $(SHELL) ./config.status --recheck | |
836 | ||
252b5132 RH |
837 | # What appears below is generated by a hacked mkdep using gcc -MM. |
838 | ||
839 | # DO NOT DELETE THIS LINE -- mkdep uses it. | |
840 | # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. | |
b13c7b49 AM |
841 | archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h \ |
842 | $(INCDIR)/aout/ranlib.h $(INCDIR)/safe-ctype.h | |
843 | archures.lo: archures.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h | |
844 | bfd.lo: bfd.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
845 | $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \ | |
846 | $(INCDIR)/coff/sym.h libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h \ | |
847 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
848 | $(INCDIR)/elf/external.h | |
849 | cache.lo: cache.c $(INCDIR)/filenames.h | |
850 | coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ | |
851 | libcoff.h $(INCDIR)/bfdlink.h | |
852 | corefile.lo: corefile.c $(INCDIR)/filenames.h | |
853 | format.lo: format.c $(INCDIR)/filenames.h | |
854 | init.lo: init.c $(INCDIR)/filenames.h | |
855 | libbfd.lo: libbfd.c $(INCDIR)/filenames.h | |
856 | opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h | |
857 | reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h | |
858 | section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h | |
859 | syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ | |
860 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def | |
861 | targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/fnmatch.h \ | |
862 | targmatch.h | |
863 | hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h | |
864 | linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
865 | genlink.h | |
866 | srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
923f08ff | 867 | $(INCDIR)/safe-ctype.h |
c0ef99a7 | 868 | binary.lo: binary.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h |
b13c7b49 AM |
869 | tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h |
870 | ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
e43d48cc | 871 | $(INCDIR)/safe-ctype.h |
b13c7b49 AM |
872 | stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/aout/stab_gnu.h \ |
873 | $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h | |
874 | stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \ | |
875 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def | |
e90b95f6 AM |
876 | merge.lo: merge.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ |
877 | $(INCDIR)/libiberty.h | |
b13c7b49 AM |
878 | dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ |
879 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
880 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf2.h | |
c0ef99a7 | 881 | archive64.lo: archive64.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h |
b13c7b49 AM |
882 | cpu-a29k.lo: cpu-a29k.c $(INCDIR)/filenames.h |
883 | cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h | |
884 | cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h | |
885 | cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h | |
886 | cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h | |
887 | cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h | |
888 | cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h | |
889 | cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h | |
caf47ea6 | 890 | cpu-dlx.lo: cpu-dlx.c $(INCDIR)/filenames.h |
b13c7b49 | 891 | cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h |
4e5ba5b7 | 892 | cpu-frv.lo: cpu-frv.c $(INCDIR)/filenames.h |
b13c7b49 AM |
893 | cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h |
894 | cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h | |
895 | cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h | |
896 | cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h cpu-ia64-opc.c \ | |
897 | $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h | |
898 | cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h | |
899 | cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h | |
900 | cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h | |
901 | cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h | |
902 | cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h | |
903 | cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h | |
904 | cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h | |
905 | cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h | |
906 | cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h | |
907 | cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h | |
908 | cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h | |
909 | cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h | |
910 | cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h | |
3c3bdf30 | 911 | cpu-mmix.lo: cpu-mmix.c $(INCDIR)/filenames.h |
ba323545 | 912 | cpu-or32.lo: cpu-or32.c $(INCDIR)/filenames.h |
b13c7b49 AM |
913 | cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h ns32k.h |
914 | cpu-openrisc.lo: cpu-openrisc.c $(INCDIR)/filenames.h | |
915 | cpu-pdp11.lo: cpu-pdp11.c $(INCDIR)/filenames.h | |
916 | cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h | |
917 | cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h | |
918 | cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h | |
919 | cpu-s390.lo: cpu-s390.c $(INCDIR)/filenames.h | |
920 | cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h | |
921 | cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h | |
922 | cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h | |
923 | cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h | |
924 | cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h | |
925 | cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h | |
926 | cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h | |
927 | cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h | |
928 | cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h | |
93fbbb04 | 929 | cpu-xstormy16.lo: cpu-xstormy16.c $(INCDIR)/filenames.h |
b13c7b49 AM |
930 | cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h |
931 | aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/aout/adobe.h \ | |
932 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \ | |
933 | $(INCDIR)/bfdlink.h | |
934 | aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \ | |
935 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \ | |
923f08ff | 936 | $(INCDIR)/safe-ctype.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ |
e43d48cc | 937 | $(INCDIR)/aout/ar.h aout-target.h |
b13c7b49 | 938 | aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \ |
e43d48cc AM |
939 | $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h libaout.h \ |
940 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
b13c7b49 AM |
941 | $(INCDIR)/aout/ar.h aout-target.h |
942 | aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \ | |
943 | ns32k.h libaout.h $(INCDIR)/bfdlink.h aoutx.h $(INCDIR)/filenames.h \ | |
944 | $(INCDIR)/safe-ctype.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
e43d48cc | 945 | $(INCDIR)/aout/ar.h |
b13c7b49 AM |
946 | aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \ |
947 | libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \ | |
948 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
949 | $(INCDIR)/aout/ar.h aout-target.h | |
950 | aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \ | |
951 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
952 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h \ | |
953 | $(INCDIR)/safe-ctype.h | |
954 | aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \ | |
955 | libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ | |
956 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
957 | aout-target.h | |
958 | aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ | |
959 | $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \ | |
960 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
961 | armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
962 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
963 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
964 | bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
965 | genlink.h $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h \ | |
2114f57b | 966 | $(INCDIR)/aout/stab.def libaout.h |
b13c7b49 | 967 | cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \ |
8a5cc6be AM |
968 | coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ |
969 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
970 | coffcode.h coffswap.h | |
b13c7b49 AM |
971 | cf-m68klynx.lo: cf-m68klynx.c coff-m68k.c $(INCDIR)/filenames.h \ |
972 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 973 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
974 | cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \ |
975 | $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 976 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
977 | coff-a29k.lo: coff-a29k.c $(INCDIR)/filenames.h $(INCDIR)/coff/a29k.h \ |
978 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
2114f57b | 979 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
980 | coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \ |
981 | $(INCDIR)/coff/apollo.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 982 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 | 983 | coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/coff/arm.h \ |
8a5cc6be | 984 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ |
b13c7b49 AM |
985 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
986 | coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \ | |
987 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ | |
988 | coff-m68k.c libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
989 | coffswap.h | |
990 | coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
991 | genlink.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h \ | |
e43d48cc | 992 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h |
b13c7b49 AM |
993 | coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
994 | $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
995 | libcoff.h coffcode.h coffswap.h | |
996 | coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/coff/i386.h \ | |
997 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 998 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
999 | coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/coff/i860.h \ |
1000 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1001 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
1002 | coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \ | |
1003 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
e43d48cc | 1004 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 | 1005 | coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/coff/i960.h \ |
2114f57b | 1006 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ |
252b5132 | 1007 | coffcode.h coffswap.h |
b13c7b49 AM |
1008 | coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/coff/m68k.h \ |
1009 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 1010 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
1011 | coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/coff/m88k.h \ |
1012 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 1013 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
1014 | coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1015 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
1016 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \ | |
1017 | libcoff.h libecoff.h coffswap.h ecoffswap.h | |
ba323545 AM |
1018 | coff-or32.lo: coff-or32.c $(INCDIR)/filenames.h $(INCDIR)/coff/or32.h \ |
1019 | $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ | |
1020 | coffcode.h coffswap.h | |
b13c7b49 | 1021 | coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \ |
beb1bf64 | 1022 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h \ |
8a5cc6be AM |
1023 | $(INCDIR)/coff/rs6000.h libcoff.h libxcoff.h coffcode.h \ |
1024 | coffswap.h | |
b13c7b49 AM |
1025 | coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ |
1026 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h \ | |
1027 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h | |
1028 | coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/coff/sparc.h \ | |
8a5cc6be | 1029 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ |
e43d48cc | 1030 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 AM |
1031 | coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \ |
1032 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1033 | $(INCDIR)/coff/go32exe.h libcoff.h $(INCDIR)/bfdlink.h \ | |
1034 | coffcode.h coffswap.h go32stub.h | |
1035 | coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \ | |
1036 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1037 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h | |
1038 | coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1039 | $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1040 | libcoff.h coffcode.h coffswap.h | |
1041 | coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \ | |
2114f57b | 1042 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \ |
252b5132 | 1043 | $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h |
b13c7b49 AM |
1044 | coff-tic80.lo: coff-tic80.c $(INCDIR)/bfdlink.h $(INCDIR)/filenames.h \ |
1045 | $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1046 | libcoff.h coffcode.h coffswap.h | |
1047 | coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \ | |
1048 | $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
8a5cc6be | 1049 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
b13c7b49 | 1050 | coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/coff/we32k.h \ |
8a5cc6be | 1051 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ |
b13c7b49 AM |
1052 | libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h |
1053 | coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1054 | $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1055 | libcoff.h coffcode.h coffswap.h | |
1056 | coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1057 | $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1058 | libcoff.h coffcode.h coffswap.h | |
1059 | cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1060 | $(INCDIR)/coff/internal.h libcoff.h | |
1061 | dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ | |
252b5132 | 1062 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1063 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf.h |
1064 | ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1065 | $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h $(INCDIR)/aout/stab_gnu.h \ | |
1066 | $(INCDIR)/aout/stab.def libaout.h $(INCDIR)/aout/aout64.h \ | |
1067 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
1068 | $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h | |
1069 | ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1070 | $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1071 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
1072 | $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h | |
1073 | efi-app-ia32.lo: efi-app-ia32.c $(INCDIR)/filenames.h \ | |
1074 | coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ | |
1075 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1076 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
1077 | elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1078 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
c0ef99a7 | 1079 | $(INCDIR)/elf/external.h $(INCDIR)/libiberty.h |
b13c7b49 | 1080 | elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h elf-bfd.h \ |
2114f57b | 1081 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
b13c7b49 AM |
1082 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h \ |
1083 | $(INCDIR)/libiberty.h elf32-target.h | |
1084 | elfarm-oabi.lo: elfarm-oabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ | |
1085 | $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1086 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1087 | elf32-arm.h elf32-target.h | |
e43d48cc | 1088 | elfarm-nabi.lo: elfarm-nabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ |
b13c7b49 AM |
1089 | $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \ |
1090 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1091 | elf32-arm.h elf32-target.h | |
1092 | elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1093 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1094 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h $(INCDIR)/elf/reloc-macros.h \ | |
1095 | elf32-target.h | |
1096 | elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1097 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1098 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h $(INCDIR)/elf/reloc-macros.h \ | |
1099 | elf32-target.h | |
1100 | elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1101 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1102 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h $(INCDIR)/elf/reloc-macros.h \ | |
1103 | elf32-target.h | |
1104 | elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1105 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1106 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h $(INCDIR)/elf/reloc-macros.h \ | |
1107 | elf32-target.h | |
d172d4ba NC |
1108 | elf32-dlx.lo: elf32-dlx.c $(INCDIR)/filenames.h elf-bfd.h \ |
1109 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1110 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/dlx.h $(INCDIR)/elf/reloc-macros.h \ | |
1111 | elf32-target.h | |
b13c7b49 AM |
1112 | elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h elf-bfd.h \ |
1113 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1114 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h $(INCDIR)/elf/reloc-macros.h \ | |
1115 | elf32-target.h | |
4e5ba5b7 DB |
1116 | elf32-frv.lo: elf32-frv.c elf-bfd.h $(INCDIR)/elf/common.h \ |
1117 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1118 | $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h \ | |
1119 | elf32-target.h | |
b13c7b49 | 1120 | elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h elf-bfd.h \ |
41b49281 | 1121 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
b13c7b49 AM |
1122 | $(INCDIR)/bfdlink.h elf32-target.h |
1123 | elf32-h8300.lo: elf32-h8300.c $(INCDIR)/filenames.h \ | |
923f08ff | 1124 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 | 1125 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/h8.h \ |
923f08ff | 1126 | $(INCDIR)/elf/reloc-macros.h elf32-target.h |
b13c7b49 AM |
1127 | elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h elf-bfd.h \ |
1128 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1129 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \ | |
1130 | libhppa.h elf32-hppa.h elf-hppa.h elf32-target.h | |
1131 | elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
2114f57b | 1132 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1133 | $(INCDIR)/elf/external.h $(INCDIR)/elf/i370.h elf32-target.h |
1134 | elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
2114f57b | 1135 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1136 | $(INCDIR)/elf/external.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \ |
1137 | elf32-target.h | |
caf47ea6 AM |
1138 | elf32-i386qnx.lo: elf32-i386qnx.c elf32-i386.c $(INCDIR)/filenames.h \ |
1139 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1140 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/i386.h \ | |
1141 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
b13c7b49 AM |
1142 | elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h elf-bfd.h \ |
1143 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1144 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h \ | |
1145 | elf32-target.h | |
1146 | elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1147 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1148 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h $(INCDIR)/elf/reloc-macros.h \ | |
1149 | elf32-target.h | |
1150 | elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1151 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1152 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h \ | |
1153 | elf32-target.h | |
1154 | elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
2114f57b | 1155 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1156 | $(INCDIR)/elf/external.h $(INCDIR)/elf/m68k.h $(INCDIR)/elf/reloc-macros.h \ |
1157 | elf32-target.h | |
1158 | elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \ | |
bbeb2e03 | 1159 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 | 1160 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m68hc11.h \ |
bbeb2e03 | 1161 | $(INCDIR)/elf/reloc-macros.h elf32-target.h |
b13c7b49 | 1162 | elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \ |
bbeb2e03 | 1163 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 | 1164 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m68hc11.h \ |
bbeb2e03 | 1165 | $(INCDIR)/elf/reloc-macros.h elf32-target.h |
b13c7b49 AM |
1166 | elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h elf-bfd.h \ |
1167 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1168 | $(INCDIR)/bfdlink.h elf32-target.h | |
1169 | elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1170 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1171 | $(INCDIR)/bfdlink.h elf32-target.h | |
1172 | elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1173 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1174 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/reloc-macros.h \ | |
252b5132 | 1175 | elf32-target.h |
b13c7b49 | 1176 | elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \ |
2114f57b | 1177 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ |
b13c7b49 | 1178 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mcore.h \ |
e43d48cc | 1179 | $(INCDIR)/elf/reloc-macros.h elf32-target.h |
830629ab | 1180 | elfxx-mips.lo: elfxx-mips.c $(INCDIR)/filenames.h elf-bfd.h \ |
c6e90b02 | 1181 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
830629ab AM |
1182 | $(INCDIR)/bfdlink.h elfxx-mips.h $(INCDIR)/elf/mips.h \ |
1183 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
1184 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h | |
b13c7b49 | 1185 | elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
830629ab AM |
1186 | genlink.h elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
1187 | $(INCDIR)/elf/external.h elfxx-mips.h $(INCDIR)/elf/mips.h \ | |
c6e90b02 TS |
1188 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ |
1189 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h \ | |
830629ab | 1190 | $(INCDIR)/coff/external.h ecoffswap.h elf32-target.h |
b13c7b49 | 1191 | elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h \ |
2114f57b | 1192 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1193 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/openrisc.h \ |
1194 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ | |
2114f57b | 1195 | elf32-target.h |
3b16e843 NC |
1196 | elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h elf-bfd.h \ |
1197 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
ba323545 AM |
1198 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h \ |
1199 | $(INCDIR)/libiberty.h elf32-target.h | |
b13c7b49 AM |
1200 | elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1201 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1202 | $(INCDIR)/elf/external.h $(INCDIR)/elf/pj.h $(INCDIR)/elf/reloc-macros.h \ | |
a85d7ed0 | 1203 | elf32-target.h |
b13c7b49 | 1204 | elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
e43d48cc | 1205 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1206 | $(INCDIR)/elf/external.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \ |
1207 | elf32-target.h | |
54327882 AM |
1208 | elf32-sh64.lo: elf32-sh64.c $(INCDIR)/filenames.h elf-bfd.h \ |
1209 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1210 | $(INCDIR)/bfdlink.h $(srcdir)/../opcodes/sh64-opc.h \ | |
1211 | elf32-sh.c $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ | |
1212 | elf32-target.h | |
9cba27b2 JT |
1213 | elf32-sh64-com.lo: elf32-sh64-com.c $(INCDIR)/filenames.h \ |
1214 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1215 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/sh.h \ | |
1216 | $(INCDIR)/elf/reloc-macros.h $(srcdir)/../opcodes/sh64-opc.h | |
b13c7b49 | 1217 | elf32-s390.lo: elf32-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
e43d48cc | 1218 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 AM |
1219 | $(INCDIR)/elf/external.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h \ |
1220 | elf32-target.h | |
1221 | elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
2114f57b | 1222 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 | 1223 | $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ |
2114f57b | 1224 | elf32-target.h |
b13c7b49 AM |
1225 | elf32-sh-lin.lo: elf32-sh-lin.c $(INCDIR)/filenames.h \ |
1226 | $(INCDIR)/elf/internal.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1227 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-sh.c \ | |
1228 | $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
c0ef99a7 AM |
1229 | elf32-sh-nbsd.lo: elf32-sh-nbsd.c elf32-sh.c $(INCDIR)/filenames.h \ |
1230 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1231 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h \ | |
1232 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
9cba27b2 JT |
1233 | elf32-sh64-nbsd.lo: elf32-sh64-nbsd.c elf32-sh64.c \ |
1234 | $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1235 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1236 | $(srcdir)/../opcodes/sh64-opc.h elf32-sh.c $(INCDIR)/elf/sh.h \ | |
1237 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
b13c7b49 | 1238 | elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \ |
2114f57b AM |
1239 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ |
1240 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \ | |
1241 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \ | |
1242 | elf32-target.h | |
b13c7b49 AM |
1243 | elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1244 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1245 | $(INCDIR)/elf/external.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \ | |
1246 | $(INCDIR)/libiberty.h elf32-target.h | |
90ace9e9 JT |
1247 | elf32-vax.lo: elf32-vax.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1248 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1249 | $(INCDIR)/elf/external.h $(INCDIR)/elf/vax.h $(INCDIR)/elf/reloc-macros.h \ | |
caf47ea6 | 1250 | elf32-target.h |
c0ef99a7 AM |
1251 | elf32-xstormy16.lo: elf32-xstormy16.c $(INCDIR)/filenames.h \ |
1252 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1253 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/xstormy16.h \ | |
1254 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ | |
93fbbb04 | 1255 | elf32-target.h |
b13c7b49 | 1256 | elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ |
e43d48cc | 1257 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ |
b13c7b49 AM |
1258 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elfcore.h \ |
1259 | elflink.h | |
1260 | elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1261 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1262 | $(INCDIR)/elf/external.h | |
c0ef99a7 AM |
1263 | elf-strtab.lo: elf-strtab.c $(INCDIR)/filenames.h elf-bfd.h \ |
1264 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
e90b95f6 | 1265 | $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h |
c0ef99a7 AM |
1266 | elf-eh-frame.lo: elf-eh-frame.c $(INCDIR)/filenames.h \ |
1267 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1268 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf2.h | |
b13c7b49 AM |
1269 | epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \ |
1270 | coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \ | |
1271 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1272 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
1273 | epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \ | |
1274 | coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \ | |
1275 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1276 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
1277 | hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h libaout.h \ | |
1278 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
2114f57b | 1279 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h |
252b5132 | 1280 | hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \ |
b13c7b49 | 1281 | aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ |
923f08ff AM |
1282 | $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \ |
1283 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1284 | aout-target.h | |
b13c7b49 AM |
1285 | som.lo: som.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h |
1286 | i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1287 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/stab_gnu.h \ | |
1288 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1289 | i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h libaout.h \ | |
1290 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
2114f57b | 1291 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h |
e43d48cc | 1292 | i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \ |
b13c7b49 AM |
1293 | $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \ |
1294 | libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1295 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h | |
1296 | i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \ | |
1297 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1298 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1299 | i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
2114f57b | 1300 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ |
b13c7b49 AM |
1301 | libaout.h $(INCDIR)/bfdlink.h aout-target.h |
1302 | i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h libaout.h \ | |
1303 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1304 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1305 | i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h libaout.h \ | |
1306 | $(INCDIR)/bfdlink.h | |
1307 | i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
2114f57b AM |
1308 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ |
1309 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
b13c7b49 AM |
1310 | i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ |
1311 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1312 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1313 | i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1314 | libaout.h $(INCDIR)/os9k.h | |
1315 | ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/ieee.h \ | |
1316 | libieee.h $(INCDIR)/safe-ctype.h | |
1317 | m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
2114f57b AM |
1318 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ |
1319 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
b13c7b49 AM |
1320 | m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ |
1321 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1322 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1323 | m68klynx.lo: m68klynx.c $(INCDIR)/filenames.h libaout.h \ | |
1324 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1325 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1326 | m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1327 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1328 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1329 | m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h libaout.h \ | |
1330 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1331 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1332 | mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h libaout.h \ | |
1333 | $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1334 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1335 | newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1336 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1337 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1338 | nlm.lo: nlm.c $(INCDIR)/filenames.h libnlm.h $(INCDIR)/nlm/common.h \ | |
1339 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1340 | nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/nlm/i386-ext.h \ | |
252b5132 | 1341 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ |
b13c7b49 AM |
1342 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h |
1343 | nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \ | |
2114f57b AM |
1344 | $(INCDIR)/nlm/sparc32-ext.h libnlm.h $(INCDIR)/nlm/common.h \ |
1345 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ | |
1346 | nlm-target.h | |
b13c7b49 | 1347 | nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/nlm/ppc-ext.h \ |
252b5132 | 1348 | libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ |
b13c7b49 AM |
1349 | $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h |
1350 | nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h libnlm.h \ | |
1351 | $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1352 | ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
e43d48cc | 1353 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ |
b13c7b49 AM |
1354 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h |
1355 | oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ | |
1356 | $(INCDIR)/oasys.h liboasys.h | |
1357 | pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \ | |
1358 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1359 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1360 | pdp11.lo: pdp11.c $(INCDIR)/filenames.h libaout.h $(INCDIR)/bfdlink.h \ | |
1361 | aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ | |
1362 | $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h $(INCDIR)/safe-ctype.h | |
1363 | pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \ | |
1364 | $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1365 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1366 | peicode.h libpei.h | |
1367 | pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \ | |
1368 | $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1369 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1370 | peicode.h libpei.h | |
1371 | pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \ | |
1372 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1373 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1374 | peicode.h libpei.h | |
1375 | pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \ | |
1376 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1377 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1378 | peicode.h libpei.h | |
1379 | pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ | |
1380 | $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1381 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1382 | peicode.h libpei.h | |
1383 | pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ | |
1384 | $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1385 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1386 | peicode.h libpei.h | |
1387 | pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ | |
1388 | $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \ | |
e43d48cc AM |
1389 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
1390 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
b13c7b49 AM |
1391 | pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ |
1392 | $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \ | |
e43d48cc AM |
1393 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
1394 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
b13c7b49 AM |
1395 | pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/libiberty.h \ |
1396 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h \ | |
e43d48cc | 1397 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ |
b13c7b49 AM |
1398 | coffcode.h peicode.h libpei.h |
1399 | pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \ | |
1400 | $(INCDIR)/libiberty.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \ | |
1401 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
e43d48cc AM |
1402 | $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \ |
1403 | libpei.h | |
b13c7b49 AM |
1404 | pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/coff/mipspe.h \ |
1405 | $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ | |
1406 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1407 | peicode.h libpei.h | |
1408 | pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \ | |
8a5cc6be AM |
1409 | $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ |
1410 | $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ | |
1411 | peicode.h libpei.h | |
b13c7b49 AM |
1412 | ppcboot.lo: ppcboot.c $(INCDIR)/safe-ctype.h $(INCDIR)/filenames.h |
1413 | reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1414 | genlink.h $(INCDIR)/coff/internal.h libcoff.h | |
1415 | riscix.lo: riscix.c $(INCDIR)/filenames.h libaout.h \ | |
1416 | $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \ | |
1417 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1418 | sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \ | |
1419 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1420 | libaout.h $(INCDIR)/bfdlink.h aout-target.h | |
1421 | sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \ | |
252b5132 | 1422 | libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ |
b13c7b49 AM |
1423 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ |
1424 | aout-target.h | |
1425 | sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1426 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1427 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1428 | sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \ | |
1429 | $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h \ | |
1430 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ | |
1431 | aout-target.h | |
1432 | vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \ | |
1433 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1434 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
3c2bfad6 JT |
1435 | vax1knetbsd.lo: vax1knetbsd.c netbsd.h $(INCDIR)/filenames.h \ |
1436 | libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ | |
1437 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
b13c7b49 AM |
1438 | versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h |
1439 | vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1440 | vms.h | |
1441 | vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1442 | vms.h | |
1443 | vms-hdr.lo: vms-hdr.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1444 | $(INCDIR)/safe-ctype.h vms.h | |
1445 | vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1446 | vms.h | |
1447 | vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1448 | vms.h | |
1449 | xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1450 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h libcoff.h \ | |
1451 | libxcoff.h | |
54327882 | 1452 | aix5ppc-core.lo: aix5ppc-core.c |
b13c7b49 AM |
1453 | aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ |
1454 | $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \ | |
1455 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h | |
1456 | coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ | |
1457 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ | |
1458 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \ | |
1459 | libcoff.h libecoff.h coffswap.h ecoffswap.h | |
1460 | coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \ | |
8a5cc6be | 1461 | $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h \ |
b13c7b49 AM |
1462 | $(INCDIR)/coff/rs6k64.h libcoff.h libxcoff.h coffcode.h \ |
1463 | coffswap.h | |
1464 | demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \ | |
2114f57b AM |
1465 | $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \ |
1466 | $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
1467 | $(INCDIR)/aout/ar.h aout-target.h | |
b13c7b49 AM |
1468 | efi-app-ia64.lo: efi-app-ia64.c $(INCDIR)/filenames.h \ |
1469 | coff-ia64.c $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \ | |
1470 | $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ | |
1471 | $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h | |
1472 | elf64-x86-64.lo: elf64-x86-64.c $(INCDIR)/filenames.h \ | |
54327882 AM |
1473 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ |
1474 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/x86-64.h \ | |
b13c7b49 AM |
1475 | $(INCDIR)/elf/reloc-macros.h elf64-target.h |
1476 | elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \ | |
2114f57b AM |
1477 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
1478 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/alpha.h \ | |
1479 | $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \ | |
1480 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \ | |
1481 | $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h libcoff.h \ | |
1482 | libecoff.h ecoffswap.h elf64-target.h | |
27b7e12d | 1483 | elf64-hppa.lo: elf64-hppa.c $(INCDIR)/alloca-conf.h \ |
b13c7b49 AM |
1484 | $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \ |
1485 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \ | |
1486 | $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h libhppa.h \ | |
1487 | elf64-hppa.h elf-hppa.h elf64-target.h | |
1488 | elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h elf-bfd.h \ | |
2114f57b | 1489 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ |
b13c7b49 AM |
1490 | $(INCDIR)/bfdlink.h elf64-target.h |
1491 | elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h \ | |
830629ab AM |
1492 | $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \ |
1493 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elfxx-mips.h \ | |
1494 | $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/sym.h \ | |
1495 | $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ | |
1496 | $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \ | |
1497 | elf64-target.h | |
3c3bdf30 NC |
1498 | elf64-mmix.lo: elf64-mmix.c $(INCDIR)/filenames.h elf-bfd.h \ |
1499 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1500 | $(INCDIR)/bfdlink.h $(INCDIR)/elf/mmix.h $(INCDIR)/elf/reloc-macros.h \ | |
1501 | $(INCDIR)/opcode/mmix.h elf64-target.h | |
b13c7b49 | 1502 | elf64-ppc.lo: elf64-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
a85d7ed0 | 1503 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
b13c7b49 | 1504 | $(INCDIR)/elf/external.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \ |
c0ef99a7 | 1505 | elf64-ppc.h elf64-target.h |
b13c7b49 AM |
1506 | elf64-s390.lo: elf64-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1507 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1508 | $(INCDIR)/elf/external.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h \ | |
1509 | elf64-target.h | |
2c73f9d8 AM |
1510 | elf64-sh64.lo: elf64-sh64.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ |
1511 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ | |
1512 | $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ | |
1513 | elf64-target.h | |
9cba27b2 JT |
1514 | elf64-sh64-nbsd.lo: elf64-sh64-nbsd.c elf64-sh64.c \ |
1515 | $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h elf-bfd.h \ | |
1516 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1517 | $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf64-target.h | |
b13c7b49 | 1518 | elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \ |
2114f57b AM |
1519 | elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \ |
1520 | $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/sparc.h \ | |
252b5132 RH |
1521 | $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ |
1522 | elf64-target.h | |
b13c7b49 AM |
1523 | elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ |
1524 | $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \ | |
1525 | $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elfcore.h \ | |
1526 | elflink.h | |
3c3bdf30 NC |
1527 | mmo.lo: mmo.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ |
1528 | $(INCDIR)/elf/mmix.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h | |
b13c7b49 | 1529 | nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \ |
2114f57b AM |
1530 | $(INCDIR)/nlm/alpha-ext.h libnlm.h $(INCDIR)/nlm/common.h \ |
1531 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ | |
1532 | nlm-target.h | |
b13c7b49 AM |
1533 | nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h libnlm.h \ |
1534 | $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h | |
1535 | aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \ | |
8a5cc6be AM |
1536 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ |
1537 | libcoff.h $(INCDIR)/bfdlink.h | |
b13c7b49 AM |
1538 | hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h |
1539 | irix-core.lo: irix-core.c $(INCDIR)/filenames.h | |
1540 | lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h | |
1541 | osf-core.lo: osf-core.c $(INCDIR)/filenames.h | |
1542 | sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h libaout.h \ | |
1543 | $(INCDIR)/bfdlink.h | |
1544 | trad-core.lo: trad-core.c $(INCDIR)/filenames.h libaout.h \ | |
1545 | $(INCDIR)/bfdlink.h | |
1546 | cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h | |
1547 | elf32-ia64.lo: elf32-ia64.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1548 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1549 | $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h \ | |
1550 | $(INCDIR)/elf/reloc-macros.h elf32-target.h | |
1551 | elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h elf-bfd.h \ | |
1552 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \ | |
1553 | $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h \ | |
1554 | $(INCDIR)/elf/reloc-macros.h elf64-target.h | |
1555 | peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ | |
1556 | $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/pe.h \ | |
1557 | libcoff.h $(INCDIR)/bfdlink.h libpei.h | |
1558 | pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \ | |
1559 | $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h $(INCDIR)/coff/pe.h \ | |
1560 | libcoff.h $(INCDIR)/bfdlink.h libpei.h | |
252b5132 | 1561 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |