OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [bfd/] [Makefile.am] - Blame information for rev 853

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 38 julius
## Process this file with automake to generate Makefile.in
2
 
3
AUTOMAKE_OPTIONS = 1.9 cygnus
4
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
5
 
6
# Uncomment the following line when doing a release.
7
# RELEASE=y
8
 
9
INCDIR = $(srcdir)/../include
10
CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
11
MKDEP = gcc -MM
12
 
13
SUBDIRS = doc po
14
 
15
bfddocdir = doc
16
bfdlibdir = @bfdlibdir@
17
bfdincludedir = @bfdincludedir@
18
 
19
datarootdir = @datarootdir@
20
docdir = @docdir@
21
htmldir = @htmldir@
22
 
23
bfdlib_LTLIBRARIES = libbfd.la
24
 
25
WARN_CFLAGS = @WARN_CFLAGS@
26
NO_WERROR = @NO_WERROR@
27
AM_CFLAGS = $(WARN_CFLAGS)
28
 
29
# bfd.h goes here, for now
30
BFD_H = bfd.h
31
 
32
# Jim Kingdon notes:
33
# Writing S-records should be included in all (or at least most)
34
# *-*-coff, *-*-aout, etc., configurations, because people will want to
35
# be able to use objcopy to create S-records.  (S-records are not useful
36
# for the debugger, so if you are downloading things as S-records you
37
# need two copies of the executable, one to download and one for the
38
# debugger).
39
BFD32_LIBS = \
40
        archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
41
        cache.lo coffgen.lo corefile.lo \
42
        format.lo init.lo libbfd.lo opncls.lo reloc.lo \
43
        section.lo syms.lo targets.lo hash.lo linker.lo \
44
        srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \
45
        merge.lo dwarf2.lo simple.lo
46
 
47
BFD64_LIBS = archive64.lo
48
 
49
BFD32_LIBS_CFILES = \
50
        archive.c archures.c bfd.c bfdio.c bfdwin.c \
51
        cache.c coffgen.c corefile.c \
52
        format.c init.c libbfd.c opncls.c reloc.c \
53
        section.c syms.c targets.c hash.c linker.c \
54
        srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \
55
        merge.c dwarf2.c simple.c
56
 
57
BFD64_LIBS_CFILES = archive64.c
58
 
59
# This list is alphabetized to make it easier to keep in sync
60
# with the decls and initializer in archures.c.
61
ALL_MACHINES = \
62
        cpu-alpha.lo \
63
        cpu-arc.lo \
64
        cpu-arm.lo \
65
        cpu-avr.lo \
66
        cpu-bfin.lo \
67
        cpu-cr16.lo \
68
        cpu-cr16c.lo \
69
        cpu-cris.lo \
70
        cpu-crx.lo \
71
        cpu-d10v.lo \
72
        cpu-d30v.lo \
73
        cpu-dlx.lo \
74
        cpu-fr30.lo \
75
        cpu-frv.lo \
76
        cpu-h8300.lo \
77
        cpu-h8500.lo \
78
        cpu-hppa.lo \
79
        cpu-ia64.lo \
80
        cpu-i370.lo \
81
        cpu-i386.lo \
82
        cpu-i860.lo \
83
        cpu-i960.lo \
84
        cpu-ip2k.lo \
85
        cpu-iq2000.lo \
86
        cpu-m32c.lo \
87
        cpu-m32r.lo \
88
        cpu-m68hc11.lo \
89
        cpu-m68hc12.lo \
90
        cpu-m68k.lo \
91
        cpu-m88k.lo \
92
        cpu-m10200.lo \
93
        cpu-m10300.lo \
94
        cpu-maxq.lo \
95
        cpu-mcore.lo \
96
        cpu-mep.lo \
97
        cpu-mips.lo \
98
        cpu-mmix.lo \
99
        cpu-mt.lo \
100
        cpu-msp430.lo \
101
        cpu-or32.lo \
102
        cpu-ns32k.lo \
103
        cpu-pdp11.lo \
104
        cpu-pj.lo \
105
        cpu-powerpc.lo \
106
        cpu-rs6000.lo \
107
        cpu-s390.lo \
108
        cpu-score.lo \
109
        cpu-sh.lo \
110
        cpu-sparc.lo \
111
        cpu-spu.lo \
112
        cpu-tic30.lo \
113
        cpu-tic4x.lo \
114
        cpu-tic54x.lo \
115
        cpu-tic80.lo \
116
        cpu-v850.lo \
117
        cpu-vax.lo \
118
        cpu-we32k.lo \
119
        cpu-w65.lo \
120
        cpu-xstormy16.lo \
121
        cpu-xtensa.lo \
122
        cpu-xc16x.lo \
123
        cpu-z80.lo \
124
        cpu-z8k.lo
125
 
126
ALL_MACHINES_CFILES = \
127
        cpu-alpha.c \
128
        cpu-arc.c \
129
        cpu-arm.c \
130
        cpu-avr.c \
131
        cpu-bfin.c \
132
        cpu-cr16.c \
133
        cpu-cris.c \
134
        cpu-cr16c.c \
135
        cpu-crx.c \
136
        cpu-d10v.c \
137
        cpu-d30v.c \
138
        cpu-dlx.c \
139
        cpu-fr30.c \
140
        cpu-frv.c \
141
        cpu-h8300.c \
142
        cpu-h8500.c \
143
        cpu-hppa.c \
144
        cpu-ia64.c \
145
        cpu-i370.c \
146
        cpu-i386.c \
147
        cpu-i860.c \
148
        cpu-i960.c \
149
        cpu-ip2k.c \
150
        cpu-iq2000.c \
151
        cpu-m32c.c \
152
        cpu-m32r.c \
153
        cpu-m68hc11.c \
154
        cpu-m68hc12.c \
155
        cpu-m68k.c \
156
        cpu-m88k.c \
157
        cpu-m10200.c \
158
        cpu-m10300.c \
159
        cpu-maxq.c \
160
        cpu-mcore.c \
161
        cpu-mep.c \
162
        cpu-mips.c \
163
        cpu-mmix.c \
164
        cpu-mt.c \
165
        cpu-msp430.c \
166
        cpu-or32.c \
167
        cpu-ns32k.c \
168
        cpu-pdp11.c \
169
        cpu-pj.c \
170
        cpu-powerpc.c \
171
        cpu-rs6000.c \
172
        cpu-s390.c \
173
        cpu-score.c \
174
        cpu-sh.c \
175
        cpu-sparc.c \
176
        cpu-spu.c \
177
        cpu-tic30.c \
178
        cpu-tic4x.c \
179
        cpu-tic54x.c \
180
        cpu-tic80.c \
181
        cpu-v850.c \
182
        cpu-vax.c \
183
        cpu-we32k.c \
184
        cpu-w65.c \
185
        cpu-xstormy16.c \
186
        cpu-xtensa.c \
187
        cpu-xc16x.c \
188
        cpu-z80.c \
189
        cpu-z8k.c
190
 
191
# The .o files needed by all of the 32 bit vectors that are configured into
192
# target_vector in targets.c if configured with --enable-targets=all.
193
BFD32_BACKENDS = \
194
        aout-adobe.lo \
195
        aout-arm.lo \
196
        aout-cris.lo \
197
        aout-ns32k.lo \
198
        aout-sparcle.lo \
199
        aout-tic30.lo \
200
        aout0.lo \
201
        aout32.lo \
202
        armnetbsd.lo \
203
        bout.lo \
204
        cf-i386lynx.lo \
205
        cf-sparclynx.lo \
206
        coff-apollo.lo \
207
        coff-arm.lo \
208
        coff-aux.lo \
209
        coff-h8300.lo \
210
        coff-h8500.lo \
211
        coff-i386.lo \
212
        coff-go32.lo \
213
        coff-i860.lo \
214
        coff-i960.lo \
215
        coff-m68k.lo \
216
        coff-m88k.lo \
217
        coff-maxq.lo \
218
        coff-mips.lo \
219
        coff-or32.lo \
220
        coff-rs6000.lo \
221
        coff-sh.lo \
222
        coff-sparc.lo \
223
        coff-stgo32.lo \
224
        coff-svm68k.lo \
225
        coff-tic30.lo \
226
        coff-tic4x.lo \
227
        coff-tic54x.lo \
228
        coff-tic80.lo \
229
        coff-u68k.lo \
230
        coff-we32k.lo \
231
        coff-w65.lo \
232
        coff-z80.lo \
233
        coff-z8k.lo \
234
        cofflink.lo \
235
        dwarf1.lo \
236
        ecoff.lo \
237
        ecofflink.lo \
238
        efi-app-ia32.lo \
239
        efi-bsdrv-ia32.lo \
240
        efi-rtdrv-ia32.lo \
241
        elf.lo \
242
        elf32-am33lin.lo \
243
        elf32-arc.lo \
244
        elf32-arm.lo \
245
        elf32-avr.lo \
246
        elf32-bfin.lo \
247
        elf32-cr16.lo \
248
        elf32-cr16c.lo \
249
        elf32-cris.lo \
250
        elf32-crx.lo \
251
        elf32-d10v.lo \
252
        elf32-d30v.lo \
253
        elf32-dlx.lo \
254
        elf32-fr30.lo \
255
        elf32-frv.lo \
256
        elf32-gen.lo \
257
        elf32-h8300.lo \
258
        elf32-hppa.lo \
259
        elf32-i370.lo \
260
        elf32-i386.lo \
261
        elf32-i860.lo \
262
        elf32-i960.lo \
263
        elf32-ip2k.lo \
264
        elf32-iq2000.lo \
265
        elf32-m32c.lo \
266
        elf32-m32r.lo \
267
        elf32-m68hc11.lo \
268
        elf32-m68hc12.lo \
269
        elf32-m68hc1x.lo \
270
        elf32-m68k.lo \
271
        elf32-m88k.lo \
272
        elf-m10200.lo \
273
        elf-m10300.lo \
274
        elf32-mcore.lo \
275
        elf32-mep.lo \
276
        elfxx-mips.lo \
277
        elf32-mips.lo \
278
        elf32-mt.lo \
279
        elf32-msp430.lo \
280
        elf32-or32.lo \
281
        elf32-pj.lo \
282
        elf32-ppc.lo \
283
        elf32-s390.lo \
284
        elf32-score.lo \
285
        elf32-sh.lo \
286
        elf32-sh-symbian.lo \
287
        elf32-sh64.lo \
288
        elf32-sh64-com.lo \
289
        elfxx-sparc.lo \
290
        elf32-sparc.lo \
291
        elf32-spu.lo \
292
        elf32-v850.lo \
293
        elf32-vax.lo \
294
        elf32-xstormy16.lo \
295
        elf32-xtensa.lo \
296
        elf32-xc16x.lo \
297
        elf32.lo \
298
        elflink.lo \
299
        elf-attrs.lo \
300
        elf-strtab.lo \
301
        elf-eh-frame.lo \
302
        elf-vxworks.lo \
303
        epoc-pe-arm.lo \
304
        epoc-pei-arm.lo \
305
        hp300bsd.lo \
306
        hp300hpux.lo \
307
        som.lo \
308
        i386aout.lo \
309
        i386bsd.lo \
310
        i386dynix.lo \
311
        i386freebsd.lo \
312
        i386linux.lo \
313
        i386lynx.lo \
314
        i386msdos.lo \
315
        i386netbsd.lo \
316
        i386mach3.lo \
317
        i386os9k.lo \
318
        ieee.lo \
319
        m68k4knetbsd.lo \
320
        m68klinux.lo \
321
        m68knetbsd.lo \
322
        m88kmach3.lo \
323
        m88kopenbsd.lo \
324
        mach-o.lo \
325
        mipsbsd.lo \
326
        newsos3.lo \
327
        nlm.lo \
328
        nlm32-i386.lo \
329
        nlm32-sparc.lo \
330
        nlm32-ppc.lo \
331
        nlm32.lo \
332
        ns32knetbsd.lo \
333
        oasys.lo \
334
        pc532-mach.lo \
335
        pdp11.lo \
336
        pef.lo \
337
        pe-arm.lo \
338
        pei-arm.lo \
339
        pe-arm-wince.lo \
340
        pei-arm-wince.lo \
341
        pe-i386.lo \
342
        pei-i386.lo \
343
        pe-mcore.lo \
344
        pei-mcore.lo \
345
        pe-ppc.lo \
346
        pei-ppc.lo \
347
        pe-sh.lo \
348
        pei-sh.lo \
349
        pe-mips.lo \
350
        pei-mips.lo \
351
        peigen.lo \
352
        ppcboot.lo \
353
        reloc16.lo \
354
        riscix.lo \
355
        sparclinux.lo \
356
        sparclynx.lo \
357
        sparcnetbsd.lo \
358
        sunos.lo \
359
        vaxnetbsd.lo \
360
        vax1knetbsd.lo \
361
        vaxbsd.lo \
362
        versados.lo \
363
        vms.lo \
364
        vms-gsd.lo \
365
        vms-hdr.lo \
366
        vms-misc.lo \
367
        vms-tir.lo \
368
        xcofflink.lo \
369
        xsym.lo \
370
        xtensa-isa.lo \
371
        xtensa-modules.lo
372
 
373
BFD32_BACKENDS_CFILES = \
374
        aout-adobe.c \
375
        aout-arm.c \
376
        aout-cris.c \
377
        aout-ns32k.c \
378
        aout-sparcle.c \
379
        aout-tic30.c \
380
        aout0.c \
381
        aout32.c \
382
        armnetbsd.c \
383
        bout.c \
384
        cf-i386lynx.c \
385
        cf-sparclynx.c \
386
        coff-apollo.c \
387
        coff-arm.c \
388
        coff-aux.c \
389
        coff-h8300.c \
390
        coff-h8500.c \
391
        coff-i386.c \
392
        coff-i860.c \
393
        coff-go32.c \
394
        coff-i960.c \
395
        coff-m68k.c \
396
        coff-m88k.c \
397
        coff-maxq.c \
398
        coff-mips.c \
399
        coff-or32.c \
400
        coff-rs6000.c \
401
        coff-sh.c \
402
        coff-sparc.c \
403
        coff-stgo32.c \
404
        coff-svm68k.c \
405
        coff-tic30.c \
406
        coff-tic4x.c \
407
        coff-tic54x.c \
408
        coff-tic80.c \
409
        coff-u68k.c \
410
        coff-we32k.c \
411
        coff-w65.c \
412
        coff-z80.c \
413
        coff-z8k.c \
414
        cofflink.c \
415
        dwarf1.c \
416
        ecoff.c \
417
        ecofflink.c \
418
        efi-app-ia32.c \
419
        efi-bsdrv-ia32.c \
420
        efi-rtdrv-ia32.c \
421
        elf.c \
422
        elf32-am33lin.c \
423
        elf32-arc.c \
424
        elf32-arm.c \
425
        elf32-avr.c \
426
        elf32-bfin.c \
427
        elf32-cr16.c \
428
        elf32-cr16c.c \
429
        elf32-cris.c \
430
        elf32-crx.c \
431
        elf32-d10v.c \
432
        elf32-d30v.c \
433
        elf32-dlx.c \
434
        elf32-fr30.c \
435
        elf32-frv.c \
436
        elf32-gen.c \
437
        elf32-h8300.c \
438
        elf32-hppa.c \
439
        elf32-i370.c \
440
        elf32-i386.c \
441
        elf32-i860.c \
442
        elf32-i960.c \
443
        elf32-ip2k.c \
444
        elf32-iq2000.c \
445
        elf32-m32c.c \
446
        elf32-m32r.c \
447
        elf32-m68k.c \
448
        elf32-m68hc11.c \
449
        elf32-m68hc12.c \
450
        elf32-m68hc1x.c \
451
        elf32-m88k.c \
452
        elf-m10200.c \
453
        elf-m10300.c \
454
        elf32-mcore.c \
455
        elf32-mep.c \
456
        elfxx-mips.c \
457
        elf32-mips.c \
458
        elf32-mt.c \
459
        elf32-msp430.c \
460
        elf32-or32.c \
461
        elf32-pj.c \
462
        elf32-ppc.c \
463
        elf32-sh64.c \
464
        elf32-sh64-com.c \
465
        elf32-s390.c \
466
        elf32-score.c \
467
        elf32-sh.c \
468
        elf32-sh-symbian.c \
469
        elfxx-sparc.c \
470
        elf32-sparc.c \
471
        elf32-spu.c \
472
        elf32-v850.c \
473
        elf32-vax.c \
474
        elf32-xstormy16.c \
475
        elf32-xtensa.c \
476
        elf32-xc16x.c \
477
        elf32.c \
478
        elflink.c \
479
        elf-attrs.c \
480
        elf-strtab.c \
481
        elf-eh-frame.c \
482
        elf-vxworks.c \
483
        epoc-pe-arm.c \
484
        epoc-pei-arm.c \
485
        hp300bsd.c \
486
        hp300hpux.c \
487
        som.c \
488
        i386aout.c \
489
        i386bsd.c \
490
        i386dynix.c \
491
        i386freebsd.c \
492
        i386linux.c \
493
        i386lynx.c \
494
        i386msdos.c \
495
        i386netbsd.c \
496
        i386mach3.c \
497
        i386os9k.c \
498
        ieee.c \
499
        m68k4knetbsd.c \
500
        m68klinux.c \
501
        m68knetbsd.c \
502
        m88kmach3.c \
503
        m88kopenbsd.c \
504
        mach-o.c \
505
        mipsbsd.c \
506
        newsos3.c \
507
        nlm.c \
508
        nlm32-i386.c \
509
        nlm32-sparc.c \
510
        nlm32-ppc.c \
511
        nlm32.c \
512
        ns32knetbsd.c \
513
        oasys.c \
514
        pc532-mach.c \
515
        pdp11.c \
516
        pef.c \
517
        pe-arm.c \
518
        pei-arm.c \
519
        pe-arm-wince.c \
520
        pei-arm-wince.c \
521
        pe-i386.c \
522
        pei-i386.c \
523
        pe-mcore.c \
524
        pei-mcore.c \
525
        pe-ppc.c \
526
        pei-ppc.c \
527
        pe-sh.c \
528
        pei-sh.c \
529
        pe-mips.c \
530
        pei-mips.c \
531
        ppcboot.c \
532
        reloc16.c \
533
        riscix.c \
534
        sparclinux.c \
535
        sparclynx.c \
536
        sparcnetbsd.c \
537
        sunos.c \
538
        vaxnetbsd.c \
539
        vax1knetbsd.c \
540
        vaxbsd.c \
541
        versados.c \
542
        vms.c \
543
        vms-gsd.c \
544
        vms-hdr.c \
545
        vms-misc.c \
546
        vms-tir.c \
547
        xcofflink.c \
548
        xsym.c \
549
        xtensa-isa.c \
550
        xtensa-modules.c
551
 
552
# The .o files needed by all of the 64 bit vectors that are configured into
553
# target_vector in targets.c if configured with --enable-targets=all
554
# and --enable-64-bit-bfd.
555
# elf32-ia64.c requires a 64-bit bfd_vma, and hence can not be put in
556
# BFD32_BACKENDS.
557
BFD64_BACKENDS = \
558
        aix5ppc-core.lo \
559
        aout64.lo \
560
        coff-alpha.lo \
561
        coff64-rs6000.lo \
562
        demo64.lo \
563
        efi-app-ia64.lo \
564
        efi-bsdrv-ia64.lo \
565
        efi-rtdrv-ia64.lo \
566
        efi-app-x86_64.lo \
567
        efi-bsdrv-x86_64.lo \
568
        efi-rtdrv-x86_64.lo \
569
        elf64-x86-64.lo \
570
        elf64-alpha.lo \
571
        elf64-hppa.lo \
572
        elf32-ia64.lo \
573
        elf64-ia64.lo \
574
        elf64-gen.lo \
575
        elfn32-mips.lo \
576
        elf64-mips.lo \
577
        elf64-mmix.lo \
578
        elf64-sh64.lo \
579
        elf64-ppc.lo \
580
        elf64-s390.lo \
581
        elf64-sparc.lo \
582
        elf64.lo \
583
        mmo.lo \
584
        nlm32-alpha.lo \
585
        nlm64.lo \
586
        coff-x86_64.lo \
587
        pe-x86_64.lo \
588
        pei-x86_64.lo \
589
        pepigen.lo \
590
        pex64igen.lo
591
 
592
BFD64_BACKENDS_CFILES = \
593
        aix5ppc-core.c \
594
        aout64.c \
595
        coff-alpha.c \
596
        coff64-rs6000.c \
597
        demo64.c \
598
        efi-app-ia64.c \
599
        efi-bsdrv-ia64.c \
600
        efi-rtdrv-ia64.c \
601
        efi-app-x86_64.c \
602
        efi-bsdrv-x86_64.c \
603
        efi-rtdrv-x86_64.c \
604
        elf64-x86-64.c \
605
        elf64-alpha.c \
606
        elf64-hppa.c \
607
        elf64-gen.c \
608
        elfn32-mips.c \
609
        elf64-mips.c \
610
        elf64-mmix.c \
611
        elf64-ppc.c \
612
        elf64-s390.c \
613
        elf64-sh64.c \
614
        elf64-sparc.c \
615
        elf64.c \
616
        mmo.c \
617
        nlm32-alpha.c \
618
        nlm64.c \
619
        coff-x86_64.c \
620
        pe-x86_64.c \
621
        pei-x86_64.c
622
 
623
OPTIONAL_BACKENDS = \
624
        aix386-core.lo \
625
        hpux-core.lo \
626
        irix-core.lo \
627
        lynx-core.lo \
628
        osf-core.lo \
629
        sco5-core.lo \
630
        trad-core.lo \
631
        cisco-core.lo
632
 
633
OPTIONAL_BACKENDS_CFILES = \
634
        aix386-core.c \
635
        hpux-core.c \
636
        irix-core.c \
637
        lynx-core.c \
638
        osf-core.c \
639
        sco5-core.c \
640
        trad-core.c \
641
        cisco-core.c
642
 
643
# We want to rerun configure if configure.in, config.bfd or
644
# configure.host change. configure.in is needed since the version
645
# number in Makefile comes from configure.in.
646
CONFIG_STATUS_DEPENDENCIES = \
647
        $(srcdir)/configure.in \
648
        $(srcdir)/config.bfd \
649
        $(srcdir)/configure.host
650
 
651
# These are defined by configure.in:
652
WORDSIZE = @wordsize@
653
ALL_BACKENDS = @all_backends@
654
BFD_BACKENDS = @bfd_backends@
655
BFD_MACHINES = @bfd_machines@
656
TDEFAULTS = @tdefaults@
657
 
658
INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) @INCINTL@
659
 
660
# C source files that correspond to .o's.
661
SOURCE_CFILES = \
662
        $(BFD32_LIBS_CFILES) \
663
        $(BFD64_LIBS_CFILES) \
664
        $(ALL_MACHINES_CFILES) \
665
        $(BFD32_BACKENDS_CFILES) \
666
        $(BFD64_BACKENDS_CFILES) \
667
        $(OPTIONAL_BACKENDS_CFILES)
668
 
669
BUILD_CFILES = \
670
        elf32-ia64.c elf64-ia64.c peigen.c pepigen.c pex64igen.c
671
 
672
CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
673
 
674
## This is a list of all .h files which are in the source tree.
675
SOURCE_HFILES = \
676
        aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
677
        elf-bfd.h elf-hppa.h elf32-hppa.h \
678
        elf64-hppa.h elfcode.h elfcore.h \
679
        freebsd.h genlink.h go32stub.h \
680
        libaout.h libbfd.h libcoff.h libecoff.h libhppa.h libieee.h \
681
        libnlm.h liboasys.h libpei.h libxcoff.h mach-o.h \
682
        netbsd.h nlm-target.h nlmcode.h nlmswap.h ns32k.h \
683
        pef.h pef-traceback.h peicode.h som.h version.h \
684
        vms.h xcoff-target.h xsym.h
685
 
686
## ... and all .h files which are in the build tree.
687
BUILD_HFILES = \
688
        bfdver.h elf32-target.h elf64-target.h targmatch.h bfd_stdint.h
689
 
690
HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
691
 
692
SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
693
BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
694
 
695
po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
696
        for file in $(SRC_POTFILES); do echo $$file; done \
697
          | LC_COLLATE= sort > tmp.src \
698
          && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
699
 
700
po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
701
        for file in $(BLD_POTFILES); do echo $$file; done \
702
          | LC_COLLATE= sort > tmp.bld \
703
          && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
704
 
705
all diststuff: info
706
 
707
.PHONY: install-html install-html-am install-html-recursive
708
 
709
install-html:   install-html-recursive
710
 
711
install-html-recursive:
712
        @failcom='exit 1'; \
713
        for f in x $$MAKEFLAGS; do \
714
          case $$f in \
715
            *=* | --[!k]*);; \
716
            *k*) failcom='fail=yes';; \
717
          esac; \
718
        done; \
719
        dot_seen=no; \
720
        target=`echo $@ | sed s/-recursive//`; \
721
        list='$(SUBDIRS)'; for subdir in $$list; do \
722
          echo "Making $$target in $$subdir"; \
723
          if test "$$subdir" = "."; then \
724
            dot_seen=yes; \
725
            local_target="$$target-am"; \
726
          else \
727
            local_target="$$target"; \
728
          fi; \
729
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
730
          || eval $$failcom; \
731
        done; \
732
        if test "$$dot_seen" = "no"; then \
733
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
734
        fi; test -z "$$fail"
735
 
736
# Various kinds of .o files to put in libbfd.a:
737
# BFD_BACKENDS  Routines the configured targets need.
738
# BFD_MACHINES  Architecture-specific routines the configured targets need.
739
# COREFILE      Core file routines for a native configuration
740
# bfd64_libs    Routines for 64bit support
741
OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ @bfd64_libs@
742
 
743
stamp-ofiles: Makefile
744
        rm -f tofiles
745
        f=""; \
746
        for i in $(OFILES) ; do \
747
          case " $$f " in \
748
            *" $$i "*) ;; \
749
            *) f="$$f $$i" ;; \
750
          esac ; \
751
        done ; \
752
        echo $$f > tofiles
753
        $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
754
        touch stamp-ofiles
755
 
756
ofiles: stamp-ofiles ; @true
757
 
758
# Since BFD64_LIBS is optional and we can't have substitution in
759
# libbfd_la_SOURCES, we put BFD64_LIBS in OFILES instead.
760
libbfd_la_SOURCES = $(BFD32_LIBS_CFILES)
761
libbfd_la_DEPENDENCIES = $(OFILES) ofiles
762
libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@
763
libbfd_la_LDFLAGS = -release `cat libtool-soversion` @WIN32LDFLAGS@
764
 
765
# libtool will build .libs/libbfd.a.  We create libbfd.a in the build
766
# directory so that we don't have to convert all the programs that use
767
# libbfd.a simultaneously.  This is a hack which should be removed if
768
# everything else starts using libtool.  FIXME.
769
 
770
noinst_LIBRARIES = libbfd.a
771
libbfd_a_SOURCES =
772
 
773
stamp-lib: libbfd.la
774
        libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
775
        if [ -f $$libtooldir/libbfd.a ]; then \
776
          cp $$libtooldir/libbfd.a libbfd.tmp; \
777
          $(RANLIB) libbfd.tmp; \
778
          $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
779
        else true; fi
780
        touch stamp-lib
781
 
782
libbfd.a: stamp-lib ; @true
783
 
784
# This file holds an array associating configuration triplets and
785
# vector names.  It is built from config.bfd.  It is not compiled by
786
# itself, but is included by targets.c.
787
targmatch.h: config.bfd targmatch.sed
788
        rm -f targmatch.h
789
        sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
790
        mv -f targmatch.new targmatch.h
791
 
792
# When compiling archures.c and targets.c, supply the default target
793
# info from configure.
794
 
795
targets.lo: targets.c Makefile
796
        $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/targets.c
797
 
798
archures.lo: archures.c Makefile
799
        $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/archures.c
800
 
801
dwarf2.lo: dwarf2.c Makefile
802
        $(LIBTOOL) --mode=compile $(COMPILE) -c -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
803
 
804
elf32-target.h : elfxx-target.h
805
        rm -f elf32-target.h
806
        sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
807
        mv -f elf32-target.new elf32-target.h
808
 
809
elf64-target.h : elfxx-target.h
810
        rm -f elf64-target.h
811
        sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
812
        mv -f elf64-target.new elf64-target.h
813
 
814
elf32-ia64.c : elfxx-ia64.c
815
        rm -f elf32-ia64.c
816
        sed -e s/NN/32/g < $(srcdir)/elfxx-ia64.c > elf32-ia64.new
817
        mv -f elf32-ia64.new elf32-ia64.c
818
 
819
elf64-ia64.c : elfxx-ia64.c
820
        rm -f elf64-ia64.c
821
        sed -e s/NN/64/g < $(srcdir)/elfxx-ia64.c > elf64-ia64.new
822
        mv -f elf64-ia64.new elf64-ia64.c
823
 
824
peigen.c : peXXigen.c
825
        rm -f peigen.c
826
        sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new
827
        mv -f peigen.new peigen.c
828
 
829
pepigen.c : peXXigen.c
830
        rm -f pepigen.c
831
        sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new
832
        mv -f pepigen.new pepigen.c
833
 
834
pex64igen.c: peXXigen.c
835
        rm -f pex64igen.c
836
        sed -e s/XX/pex64/g < $(srcdir)/peXXigen.c > pex64igen.new
837
        mv -f pex64igen.new pex64igen.c
838
 
839
BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
840
LOCAL_H_DEPS= libbfd.h sysdep.h config.h
841
$(BFD32_LIBS) \
842
 $(BFD64_LIBS) \
843
 $(ALL_MACHINES) \
844
 $(BFD32_BACKENDS) \
845
 $(BFD64_BACKENDS) \
846
 $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
847
 
848
install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libbfd
849
        @$(NORMAL_INSTALL)
850
 
851
uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libbfd
852
        @$(NORMAL_UNINSTALL)
853
 
854
.PHONY: install_libbfd uninstall_libbfd
855
install_libbfd: $(bfdlib_LTLIBRARIES) $(BFD_H)
856
        $(mkinstalldirs) $(DESTDIR)$(bfdlibdir)
857
        $(mkinstalldirs) $(DESTDIR)$(bfdincludedir)
858
        @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
859
          if test -f $$p; then \
860
            echo "$(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \
861
            $(LIBTOOL)  --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \
862
          else :; fi; \
863
        done
864
        $(INSTALL_DATA) $(BFD_H) $(DESTDIR)$(bfdincludedir)/bfd.h
865
        $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(DESTDIR)$(bfdincludedir)/ansidecl.h
866
        $(INSTALL_DATA) $(INCDIR)/symcat.h $(DESTDIR)$(bfdincludedir)/symcat.h
867
        $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(DESTDIR)$(bfdincludedir)/bfdlink.h
868
 
869
uninstall_libbfd:
870
        list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
871
          $(LIBTOOL)  --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \
872
        done
873
        rm -f $(DESTDIR)$(bfdincludedir)/bfd.h
874
        rm -f $(DESTDIR)$(bfdincludedir)/ansidecl.h
875
        rm -f $(DESTDIR)$(bfdincludedir)/symcat.h
876
        rm -f $(DESTDIR)$(bfdincludedir)/bfdlink.h
877
 
878
# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
879
DEP: dep.sed $(CFILES) $(HFILES) bfd.h
880
        rm -f DEP1
881
        $(MAKE) MKDEP="$(MKDEP)" DEP1
882
        sed -f dep.sed < DEP1 > DEPA
883
        echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
884
        if grep ' /' DEPA > /dev/null 2> /dev/null; then \
885
          echo 'make DEP failed!'; exit 1; \
886
        else \
887
          mv -f DEPA $@; \
888
        fi
889
 
890
DEP1: $(CFILES)
891
        echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
892
        echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
893
        $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
894
        mv -f DEP2 $@
895
 
896
dep.sed: dep-in.sed config.status
897
        sed <$(srcdir)/dep-in.sed >dep.sed     \
898
                -e 's!@BFD_H@!$(BFD_H)!'        \
899
                -e 's!@SRCDIR@!$(srcdir)!'      \
900
                -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/bfd$$,,`'!'
901
 
902
dep: DEP
903
        sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
904
        cat DEP >> tmp-Makefile
905
        $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
906
 
907
dep-in: DEP
908
        sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
909
        cat DEP >> tmp-Makefile.in
910
        $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
911
 
912
dep-am: DEP
913
        sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
914
        cat DEP >> tmp-Makefile.am
915
        $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
916
 
917
host-aout.lo: Makefile
918
 
919
# The following program can be used to generate a simple config file
920
# which can be folded into an h-XXX file for a new host, with some editing.
921
aout-params.h: gen-aout
922
        ./gen-aout host > aout-params.h
923
gen-aout: $(srcdir)/gen-aout.c Makefile
924
        $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
925
 
926
$(BFD_H): stmp-bfd-h ; @true
927
 
928
stmp-bfd-h: bfd-in3.h
929
        rm -f bfd-tmp.h
930
        cp bfd-in3.h bfd-tmp.h
931
        $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
932
        rm -f bfd-tmp.h
933
        touch stmp-bfd-h
934
 
935
BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
936
        reloc.c syms.c bfd.c bfdio.c bfdwin.c \
937
        archive.c corefile.c targets.c format.c
938
BFD64_H_FILES = archive64.c
939
LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c bfdio.c bfdwin.c \
940
        cache.c reloc.c archures.c elf.c
941
LIBCOFF_H_FILES = libcoff-in.h coffcode.h
942
 
943
# Could really use a "copy-if-change"...
944
headers:
945
        (cd $(bfddocdir); $(MAKE) protos $(FLAGS_TO_PASS))
946
        cp $(bfddocdir)/bfd.h bfd-in2.h-new
947
        $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
948
        cp $(bfddocdir)/libbfd.h libbfd.h-new
949
        $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
950
        cp $(bfddocdir)/libcoff.h libcoff.h-new
951
        $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
952
 
953
# We only rebuild the header files automatically if we have been
954
# configured with --enable-maintainer-mode.
955
 
956
$(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
957
stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES)
958
        (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
959
        cp $(bfddocdir)/bfd.h bfd-in2.h-new
960
        $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
961
        touch stmp-bin2-h
962
 
963
$(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
964
stmp-lbfd-h: $(LIBBFD_H_FILES)
965
        (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
966
        cp $(bfddocdir)/libbfd.h libbfd.h-new
967
        $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
968
        touch stmp-lbfd-h
969
 
970
$(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
971
stmp-lcoff-h: $(LIBCOFF_H_FILES)
972
        (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
973
        cp $(bfddocdir)/libcoff.h libcoff.h-new
974
        $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
975
        touch stmp-lcoff-h
976
 
977
MOSTLYCLEANFILES = ofiles stamp-ofiles
978
 
979
CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
980
        stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
981
 
982
DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) libtool-soversion
983
 
984
bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in
985
        @echo "creating $@"
986
        @bfd_version=`echo "$(VERSION)" | sed -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
987
        bfd_version_string="\"$(VERSION)\"" ;\
988
        bfd_soversion="$(VERSION)" ;\
989
        bfd_version_package="\"$(PKGVERSION)\"" ;\
990
        report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
991
        if test "x$(RELEASE)" = x ; then \
992
          bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
993
          bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
994
          bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
995
        fi ;\
996
        sed -e "s,@bfd_version@,$$bfd_version," \
997
            -e "s,@bfd_version_string@,$$bfd_version_string," \
998
            -e "s,@bfd_version_package@,$$bfd_version_package," \
999
            -e "s,@report_bugs_to@,$$report_bugs_to," \
1000
            < $(srcdir)/version.h > $@; \
1001
        echo "$${bfd_soversion}" > libtool-soversion
1002
 
1003
# What appears below is generated by a hacked mkdep using gcc -MM.
1004
 
1005
# DO NOT DELETE THIS LINE -- mkdep uses it.
1006
# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
1007
archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1008
  $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \
1009
  $(INCDIR)/safe-ctype.h
1010
archures.lo: archures.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1011
  $(INCDIR)/safe-ctype.h
1012
bfd.lo: bfd.c $(INCDIR)/filenames.h bfdver.h $(INCDIR)/libiberty.h \
1013
  $(INCDIR)/demangle.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
1014
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \
1015
  $(INCDIR)/coff/sym.h libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h \
1016
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1017
  $(INCDIR)/elf/internal.h
1018
bfdio.lo: bfdio.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1019
bfdwin.lo: bfdwin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1020
cache.lo: cache.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1021
  $(INCDIR)/libiberty.h
1022
coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1023
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h
1024
corefile.lo: corefile.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1025
format.lo: format.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1026
init.lo: init.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1027
libbfd.lo: libbfd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1028
opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h \
1029
  $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
1030
reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1031
  $(INCDIR)/hashtab.h
1032
section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1033
  $(INCDIR)/bfdlink.h
1034
syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1035
  $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \
1036
  $(INCDIR)/aout/stab.def
1037
targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1038
  $(INCDIR)/fnmatch.h targmatch.h
1039
hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1040
  $(INCDIR)/objalloc.h $(INCDIR)/libiberty.h
1041
linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1042
  $(INCDIR)/bfdlink.h genlink.h
1043
srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1044
  $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
1045
binary.lo: binary.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1046
  $(INCDIR)/hashtab.h
1047
tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1048
  $(INCDIR)/libiberty.h
1049
ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1050
  $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
1051
stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1052
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h
1053
stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \
1054
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def
1055
merge.lo: merge.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1056
  $(INCDIR)/libiberty.h
1057
dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1058
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1059
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1060
  $(INCDIR)/elf/dwarf2.h
1061
simple.lo: simple.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1062
  $(INCDIR)/bfdlink.h
1063
archive64.lo: archive64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1064
  $(INCDIR)/aout/ar.h
1065
cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1066
cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1067
cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1068
  $(INCDIR)/libiberty.h
1069
cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1070
cpu-bfin.lo: cpu-bfin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1071
cpu-cr16.lo: cpu-cr16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1072
cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1073
cpu-cr16c.lo: cpu-cr16c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1074
cpu-crx.lo: cpu-crx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1075
cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1076
cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1077
cpu-dlx.lo: cpu-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1078
cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1079
cpu-frv.lo: cpu-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1080
cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1081
cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1082
cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1083
cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1084
  cpu-ia64-opc.c $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h
1085
cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1086
cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1087
cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1088
cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1089
cpu-ip2k.lo: cpu-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1090
cpu-iq2000.lo: cpu-iq2000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1091
cpu-m32c.lo: cpu-m32c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1092
cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1093
cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h \
1094
  $(INCDIR)/hashtab.h
1095
cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h \
1096
  $(INCDIR)/hashtab.h
1097
cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1098
  $(INCDIR)/opcode/m68k.h
1099
cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1100
cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1101
cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1102
cpu-maxq.lo: cpu-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1103
cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1104
cpu-mep.lo: cpu-mep.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1105
cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1106
cpu-mmix.lo: cpu-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1107
cpu-mt.lo: cpu-mt.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1108
cpu-msp430.lo: cpu-msp430.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1109
cpu-or32.lo: cpu-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1110
cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1111
  ns32k.h
1112
cpu-pdp11.lo: cpu-pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1113
cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1114
cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h \
1115
  $(INCDIR)/hashtab.h
1116
cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1117
cpu-s390.lo: cpu-s390.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1118
cpu-score.lo: cpu-score.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1119
cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1120
  $(srcdir)/../opcodes/sh-opc.h
1121
cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1122
cpu-spu.lo: cpu-spu.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1123
cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1124
cpu-tic4x.lo: cpu-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1125
cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1126
cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1127
cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1128
  $(INCDIR)/safe-ctype.h
1129
cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1130
cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1131
cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1132
cpu-xstormy16.lo: cpu-xstormy16.c $(INCDIR)/filenames.h \
1133
  $(INCDIR)/hashtab.h
1134
cpu-xtensa.lo: cpu-xtensa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1135
cpu-xc16x.lo: cpu-xc16x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1136
cpu-z80.lo: cpu-z80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1137
cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1138
aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1139
  $(INCDIR)/aout/adobe.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1140
  libaout.h $(INCDIR)/bfdlink.h
1141
aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \
1142
  $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \
1143
  $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \
1144
  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
1145
aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \
1146
  $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h libaout.h \
1147
  $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1148
  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
1149
aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \
1150
  ns32k.h libaout.h $(INCDIR)/bfdlink.h aoutx.h $(INCDIR)/filenames.h \
1151
  $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \
1152
  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1153
aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \
1154
  libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1155
  $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1156
  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
1157
aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \
1158
  $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1159
  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h \
1160
  $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h
1161
aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1162
  $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \
1163
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1164
  $(INCDIR)/aout/ar.h aout-target.h
1165
aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1166
  $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
1167
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1168
armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \
1169
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1170
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1171
  $(INCDIR)/aout/ar.h
1172
bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1173
  $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/bout.h $(INCDIR)/libiberty.h \
1174
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
1175
cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \
1176
  coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \
1177
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1178
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1179
cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \
1180
  $(INCDIR)/hashtab.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \
1181
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1182
  coffcode.h coffswap.h
1183
coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \
1184
  $(INCDIR)/hashtab.h $(INCDIR)/coff/apollo.h $(INCDIR)/coff/external.h \
1185
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1186
  coffcode.h coffswap.h
1187
coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1188
  $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1189
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1190
coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \
1191
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
1192
  coff-m68k.c $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h \
1193
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1194
  coffcode.h coffswap.h
1195
coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1196
  $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/h8300.h \
1197
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1198
  libcoff.h $(INCDIR)/libiberty.h coffcode.h coffswap.h
1199
coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1200
  $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h \
1201
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1202
coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1203
  $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1204
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1205
coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1206
  $(INCDIR)/coff/i860.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1207
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1208
coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \
1209
  $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1210
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1211
  coffcode.h coffswap.h
1212
coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1213
  $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h \
1214
  $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1215
coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1216
  $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1217
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1218
coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1219
  $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1220
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1221
coff-maxq.lo: coff-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1222
  $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1223
  libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \
1224
  coffcode.h coffswap.h
1225
coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1226
  $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1227
  $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h \
1228
  $(INCDIR)/coff/external.h libcoff.h libecoff.h coffswap.h \
1229
  ecoffswap.h
1230
coff-or32.lo: coff-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1231
  $(INCDIR)/coff/or32.h $(INCDIR)/coff/internal.h libcoff.h \
1232
  $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1233
coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \
1234
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \
1235
  $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6000.h libcoff.h \
1236
  libxcoff.h coffcode.h coffswap.h
1237
coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1238
  $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \
1239
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1240
  libcoff.h coffcode.h coffswap.h
1241
coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1242
  $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1243
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1244
coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \
1245
  $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1246
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \
1247
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \
1248
  go32stub.h
1249
coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \
1250
  $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
1251
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1252
  coffcode.h coffswap.h
1253
coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1254
  $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \
1255
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1256
coff-tic4x.lo: coff-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1257
  $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \
1258
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1259
coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \
1260
  $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h \
1261
  $(INCDIR)/coff/ti.h $(INCDIR)/coff/internal.h libcoff.h \
1262
  coffcode.h coffswap.h
1263
coff-tic80.lo: coff-tic80.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1264
  $(INCDIR)/hashtab.h $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h \
1265
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1266
coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \
1267
  $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
1268
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1269
  coffcode.h coffswap.h
1270
coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1271
  $(INCDIR)/coff/we32k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1272
  libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1273
coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1274
  $(INCDIR)/bfdlink.h $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h \
1275
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1276
coff-z80.lo: coff-z80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1277
  $(INCDIR)/bfdlink.h $(INCDIR)/coff/z80.h $(INCDIR)/coff/external.h \
1278
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1279
coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1280
  $(INCDIR)/bfdlink.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \
1281
  $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1282
cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1283
  $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h libcoff.h \
1284
  $(INCDIR)/safe-ctype.h
1285
dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1286
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1287
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1288
  $(INCDIR)/elf/dwarf.h
1289
ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1290
  $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \
1291
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \
1292
  $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1293
  $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \
1294
  libecoff.h $(INCDIR)/libiberty.h
1295
ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1296
  $(INCDIR)/hashtab.h $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h \
1297
  $(INCDIR)/aout/stab.def $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1298
  $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \
1299
  libecoff.h
1300
efi-app-ia32.lo: efi-app-ia32.c $(INCDIR)/filenames.h \
1301
  coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \
1302
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1303
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1304
  peicode.h libpei.h
1305
efi-bsdrv-ia32.lo: efi-bsdrv-ia32.c $(INCDIR)/filenames.h \
1306
  coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \
1307
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1308
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1309
  peicode.h libpei.h
1310
efi-rtdrv-ia32.lo: efi-rtdrv-ia32.c $(INCDIR)/filenames.h \
1311
  coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \
1312
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1313
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1314
  peicode.h libpei.h
1315
elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1316
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1317
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/libiberty.h \
1318
  $(INCDIR)/safe-ctype.h
1319
elf32-am33lin.lo: elf32-am33lin.c $(INCDIR)/filenames.h \
1320
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1321
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \
1322
  $(INCDIR)/elf/reloc-macros.h elf-m10300.c $(INCDIR)/hashtab.h \
1323
  $(INCDIR)/libiberty.h elf32-target.h
1324
elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1325
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1326
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \
1327
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1328
  elf32-target.h
1329
elf32-arm.lo: elf32-arm.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1330
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1331
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1332
  elf-vxworks.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \
1333
  elf32-target.h
1334
elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1335
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1336
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h \
1337
  $(INCDIR)/elf/reloc-macros.h elf32-avr.h elf32-target.h
1338
elf32-bfin.lo: elf32-bfin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1339
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1340
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/bfin.h \
1341
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \
1342
  elf32-target.h
1343
elf32-cr16.lo: elf32-cr16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1344
  $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \
1345
  $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
1346
  $(INCDIR)/elf/cr16.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
1347
elf32-cr16c.lo: elf32-cr16c.c $(INCDIR)/filenames.h \
1348
  $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cr16c.h \
1349
  $(INCDIR)/elf/reloc-macros.h elf-bfd.h $(INCDIR)/elf/common.h \
1350
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-target.h
1351
elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1352
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1353
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h \
1354
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1355
elf32-crx.lo: elf32-crx.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1356
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1357
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/crx.h \
1358
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1359
elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1360
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1361
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h \
1362
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1363
elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1364
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1365
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h \
1366
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1367
elf32-dlx.lo: elf32-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1368
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1369
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dlx.h \
1370
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1371
elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1372
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1373
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h \
1374
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1375
elf32-frv.lo: elf32-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1376
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1377
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/frv.h \
1378
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \
1379
  elf32-target.h
1380
elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1381
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1382
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h
1383
elf32-h8300.lo: elf32-h8300.c $(INCDIR)/filenames.h \
1384
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1385
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1386
  $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
1387
elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1388
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1389
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h \
1390
  $(INCDIR)/elf/reloc-macros.h libhppa.h elf32-hppa.h \
1391
  elf-hppa.h elf32-target.h
1392
elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1393
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1394
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/i370.h \
1395
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1396
elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1397
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1398
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf-vxworks.h \
1399
  bfd_stdint.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \
1400
  elf32-target.h
1401
elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1402
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1403
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i860.h \
1404
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1405
elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1406
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1407
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h \
1408
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1409
elf32-ip2k.lo: elf32-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1410
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1411
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/ip2k.h \
1412
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1413
elf32-iq2000.lo: elf32-iq2000.c $(INCDIR)/filenames.h \
1414
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1415
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1416
  $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/reloc-macros.h \
1417
  elf32-target.h
1418
elf32-m32c.lo: elf32-m32c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1419
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1420
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32c.h \
1421
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1422
  elf32-target.h
1423
elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1424
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1425
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h \
1426
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1427
elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1428
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1429
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/m68k.h \
1430
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/m68k.h \
1431
  elf32-target.h
1432
elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \
1433
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1434
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \
1435
  $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \
1436
  $(INCDIR)/opcode/m68hc11.h elf32-target.h
1437
elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \
1438
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1439
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \
1440
  $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \
1441
  $(INCDIR)/opcode/m68hc11.h elf32-target.h
1442
elf32-m68hc1x.lo: elf32-m68hc1x.c $(INCDIR)/filenames.h \
1443
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1444
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \
1445
  $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \
1446
  $(INCDIR)/opcode/m68hc11.h
1447
elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1448
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1449
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h
1450
elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1451
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1452
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h
1453
elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1454
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1455
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \
1456
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1457
  elf32-target.h
1458
elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \
1459
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1460
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/mcore.h \
1461
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1462
elf32-mep.lo: elf32-mep.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1463
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1464
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mep.h \
1465
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1466
  elf32-target.h
1467
elfxx-mips.lo: elfxx-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1468
  $(INCDIR)/libiberty.h elf-bfd.h $(INCDIR)/elf/common.h \
1469
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1470
  elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1471
  elf-vxworks.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
1472
  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h
1473
elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1474
  $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \
1475
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfxx-mips.h \
1476
  $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h elf-vxworks.h \
1477
  $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
1478
  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \
1479
  ecoffswap.h elf32-target.h
1480
elf32-mt.lo: elf32-mt.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1481
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1482
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mt.h \
1483
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1484
elf32-msp430.lo: elf32-msp430.c $(INCDIR)/filenames.h \
1485
  $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h elf-bfd.h \
1486
  $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
1487
  $(INCDIR)/bfdlink.h $(INCDIR)/elf/msp430.h $(INCDIR)/elf/reloc-macros.h \
1488
  elf32-target.h
1489
elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1490
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1491
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/or32.h \
1492
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1493
  elf32-target.h
1494
elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1495
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1496
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/pj.h \
1497
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1498
elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1499
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1500
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/ppc.h \
1501
  $(INCDIR)/elf/reloc-macros.h elf32-ppc.h elf-vxworks.h \
1502
  elf32-target.h
1503
elf32-sh64.lo: elf32-sh64.c $(INCDIR)/filenames.h elf-bfd.h \
1504
  $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
1505
  $(INCDIR)/bfdlink.h $(srcdir)/../opcodes/sh64-opc.h \
1506
  elf32-sh64.h elf32-sh.c $(INCDIR)/hashtab.h elf-vxworks.h \
1507
  $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1508
  $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h
1509
elf32-sh64-com.lo: elf32-sh64-com.c $(INCDIR)/filenames.h \
1510
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1511
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1512
  $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-sh64.h \
1513
  $(srcdir)/../opcodes/sh64-opc.h
1514
elf32-s390.lo: elf32-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1515
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1516
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/s390.h \
1517
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1518
elf32-score.lo: elf32-score.c $(INCDIR)/filenames.h \
1519
  $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \
1520
  $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
1521
  $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \
1522
  elf32-target.h
1523
elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1524
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1525
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf-vxworks.h \
1526
  $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1527
  $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h
1528
elf32-sh-symbian.lo: elf32-sh-symbian.c elf32-sh.c \
1529
  $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \
1530
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1531
  $(INCDIR)/elf/internal.h elf-vxworks.h $(INCDIR)/elf/sh.h \
1532
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1533
  $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h
1534
elfxx-sparc.lo: elfxx-sparc.c $(INCDIR)/filenames.h \
1535
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h \
1536
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1537
  $(INCDIR)/elf/internal.h $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
1538
  $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf-vxworks.h
1539
elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \
1540
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1541
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/sparc.h \
1542
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \
1543
  elfxx-sparc.h elf-vxworks.h elf32-target.h
1544
elf32-spu.lo: elf32-spu.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1545
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1546
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/spu.h \
1547
  $(INCDIR)/elf/reloc-macros.h elf32-spu.h elf32-target.h
1548
elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1549
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1550
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/v850.h \
1551
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1552
  elf32-target.h
1553
elf32-vax.lo: elf32-vax.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1554
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1555
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/vax.h \
1556
  $(INCDIR)/elf/reloc-macros.h elf32-target.h
1557
elf32-xstormy16.lo: elf32-xstormy16.c $(INCDIR)/filenames.h \
1558
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1559
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1560
  $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/reloc-macros.h \
1561
  $(INCDIR)/libiberty.h elf32-target.h
1562
elf32-xtensa.lo: elf32-xtensa.c $(INCDIR)/filenames.h \
1563
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1564
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/xtensa.h \
1565
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/xtensa-isa.h \
1566
  $(INCDIR)/xtensa-config.h elf32-target.h
1567
elf32-xc16x.lo: elf32-xc16x.c $(INCDIR)/filenames.h \
1568
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1569
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1570
  $(INCDIR)/elf/xc16x.h $(INCDIR)/elf/reloc-macros.h \
1571
  $(INCDIR)/elf/dwarf2.h $(INCDIR)/libiberty.h elf32-target.h
1572
elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1573
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1574
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfcore.h
1575
elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1576
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1577
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/safe-ctype.h \
1578
  $(INCDIR)/libiberty.h $(INCDIR)/objalloc.h
1579
elf-attrs.lo: elf-attrs.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1580
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1581
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h
1582
elf-strtab.lo: elf-strtab.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1583
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1584
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h
1585
elf-eh-frame.lo: elf-eh-frame.c $(INCDIR)/filenames.h \
1586
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1587
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1588
  $(INCDIR)/elf/dwarf2.h
1589
elf-vxworks.lo: elf-vxworks.c $(INCDIR)/filenames.h \
1590
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1591
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1592
  elf-vxworks.h $(INCDIR)/elf/vxworks.h
1593
epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \
1594
  coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \
1595
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1596
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1597
  peicode.h libpei.h
1598
epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \
1599
  coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \
1600
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1601
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1602
  peicode.h libpei.h
1603
hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1604
  libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1605
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1606
hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \
1607
  aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1608
  $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
1609
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1610
  aout-target.h
1611
som.lo: som.c $(INCDIR)/filenames.h
1612
i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1613
  $(INCDIR)/aout/aout64.h libaout.h $(INCDIR)/bfdlink.h \
1614
  aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1615
  $(INCDIR)/aout/ar.h
1616
i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1617
  libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1618
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1619
i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \
1620
  $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \
1621
  libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
1622
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1623
  aout-target.h
1624
i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \
1625
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1626
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1627
  $(INCDIR)/aout/ar.h
1628
i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1629
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1630
  $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1631
i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1632
  libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1633
  aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1634
  $(INCDIR)/aout/ar.h
1635
i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1636
  libaout.h $(INCDIR)/bfdlink.h
1637
i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \
1638
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1639
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1640
  $(INCDIR)/aout/ar.h
1641
i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1642
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1643
  $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1644
i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1645
  $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/os9k.h
1646
ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1647
  $(INCDIR)/ieee.h libieee.h $(INCDIR)/safe-ctype.h
1648
m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1649
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1650
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1651
  $(INCDIR)/aout/ar.h
1652
m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1653
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1654
  $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1655
m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1656
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1657
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1658
  $(INCDIR)/aout/ar.h
1659
m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1660
  libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1661
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1662
m88kopenbsd.lo: m88kopenbsd.c netbsd.h $(INCDIR)/filenames.h \
1663
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1664
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1665
  $(INCDIR)/aout/ar.h
1666
mach-o.lo: mach-o.c $(INCDIR)/filenames.h mach-o.h \
1667
  $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h mach-o-target.c
1668
mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1669
  libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1670
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1671
newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1672
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1673
  $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1674
nlm.lo: nlm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1675
  libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1676
  $(INCDIR)/nlm/external.h
1677
nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1678
  $(INCDIR)/nlm/i386-ext.h libnlm.h $(INCDIR)/nlm/common.h \
1679
  $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \
1680
  nlm-target.h
1681
nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \
1682
  $(INCDIR)/hashtab.h $(INCDIR)/nlm/sparc32-ext.h libnlm.h \
1683
  $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
1684
  nlmswap.h nlm-target.h
1685
nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1686
  $(INCDIR)/nlm/ppc-ext.h libnlm.h $(INCDIR)/nlm/common.h \
1687
  $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \
1688
  nlm-target.h
1689
nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1690
  libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1691
  $(INCDIR)/nlm/external.h
1692
ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1693
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1694
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1695
  $(INCDIR)/aout/ar.h
1696
oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1697
  $(INCDIR)/hashtab.h $(INCDIR)/oasys.h liboasys.h
1698
pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \
1699
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
1700
  aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1701
  $(INCDIR)/aout/ar.h
1702
pdp11.lo: pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1703
  libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1704
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1705
  $(INCDIR)/safe-ctype.h
1706
pef.lo: pef.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1707
  pef.h pef-traceback.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
1708
pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \
1709
  $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
1710
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1711
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1712
pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \
1713
  $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
1714
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1715
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1716
pe-arm-wince.lo: pe-arm-wince.c pe-arm.c $(INCDIR)/filenames.h \
1717
  coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \
1718
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1719
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1720
  peicode.h libpei.h
1721
pei-arm-wince.lo: pei-arm-wince.c pei-arm.c $(INCDIR)/filenames.h \
1722
  coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \
1723
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1724
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1725
  peicode.h libpei.h
1726
pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \
1727
  $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1728
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1729
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1730
pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \
1731
  $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1732
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1733
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1734
pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \
1735
  $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
1736
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1737
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1738
pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \
1739
  $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
1740
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1741
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1742
pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \
1743
  $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \
1744
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1745
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1746
pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \
1747
  $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \
1748
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1749
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1750
pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/libiberty.h \
1751
  $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \
1752
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1753
  $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \
1754
  libpei.h
1755
pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \
1756
  $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h \
1757
  $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1758
  $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \
1759
  libpei.h
1760
pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1761
  $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1762
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1763
  peicode.h libpei.h
1764
pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \
1765
  $(INCDIR)/hashtab.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
1766
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1767
  $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1768
ppcboot.lo: ppcboot.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1769
  $(INCDIR)/hashtab.h
1770
reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1771
  $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/internal.h \
1772
  libcoff.h
1773
riscix.lo: riscix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1774
  libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1775
  aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1776
  $(INCDIR)/aout/ar.h
1777
sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1778
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1779
  $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1780
sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1781
  $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \
1782
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1783
  $(INCDIR)/aout/ar.h aout-target.h
1784
sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \
1785
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1786
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1787
  $(INCDIR)/aout/ar.h
1788
sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \
1789
  $(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h \
1790
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1791
  $(INCDIR)/aout/ar.h aout-target.h
1792
vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \
1793
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1794
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1795
  $(INCDIR)/aout/ar.h
1796
vax1knetbsd.lo: vax1knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1797
  $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1798
  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1799
  $(INCDIR)/aout/ar.h
1800
vaxbsd.lo: vaxbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1801
  libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1802
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1803
versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1804
  $(INCDIR)/libiberty.h
1805
vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1806
  $(INCDIR)/hashtab.h vms.h
1807
vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1808
  $(INCDIR)/hashtab.h vms.h
1809
vms-hdr.lo: vms-hdr.c $(INCDIR)/filenames.h bfdver.h \
1810
  $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h \
1811
  vms.h
1812
vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1813
  $(INCDIR)/hashtab.h vms.h
1814
vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1815
  $(INCDIR)/hashtab.h vms.h
1816
xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1817
  $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h \
1818
  libcoff.h libxcoff.h
1819
xsym.lo: xsym.c $(INCDIR)/filenames.h xsym.h $(INCDIR)/hashtab.h
1820
xtensa-isa.lo: xtensa-isa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1821
  $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-isa-internal.h
1822
xtensa-modules.lo: xtensa-modules.c $(INCDIR)/xtensa-isa.h \
1823
  $(INCDIR)/xtensa-isa-internal.h
1824
aix5ppc-core.lo: aix5ppc-core.c $(INCDIR)/filenames.h
1825
aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
1826
  $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
1827
  $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1828
coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1829
  $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1830
  $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \
1831
  $(INCDIR)/aout/ar.h libcoff.h libecoff.h coffswap.h \
1832
  ecoffswap.h
1833
coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \
1834
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \
1835
  $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6k64.h libcoff.h \
1836
  libxcoff.h coffcode.h coffswap.h
1837
demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \
1838
  $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h libaout.h \
1839
  $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1840
  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
1841
efi-app-ia64.lo: efi-app-ia64.c $(INCDIR)/filenames.h \
1842
  coff-ia64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/ia64.h \
1843
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1844
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1845
  peicode.h libpei.h
1846
efi-bsdrv-ia64.lo: efi-bsdrv-ia64.c $(INCDIR)/filenames.h \
1847
  coff-ia64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/ia64.h \
1848
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1849
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1850
  peicode.h libpei.h
1851
efi-rtdrv-ia64.lo: efi-rtdrv-ia64.c $(INCDIR)/filenames.h \
1852
  coff-ia64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/ia64.h \
1853
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1854
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1855
  peicode.h libpei.h
1856
efi-app-x86_64.lo: efi-app-x86_64.c $(INCDIR)/filenames.h \
1857
  coff-x86_64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h \
1858
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1859
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \
1860
  coffcode.h peicode.h libpei.h
1861
efi-bsdrv-x86_64.lo: efi-bsdrv-x86_64.c $(INCDIR)/filenames.h \
1862
  coff-x86_64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h \
1863
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1864
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \
1865
  coffcode.h peicode.h libpei.h
1866
efi-rtdrv-x86_64.lo: efi-rtdrv-x86_64.c $(INCDIR)/filenames.h \
1867
  coff-x86_64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h \
1868
  $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1869
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \
1870
  coffcode.h peicode.h libpei.h
1871
elf64-x86-64.lo: elf64-x86-64.c $(INCDIR)/filenames.h \
1872
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1873
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h bfd_stdint.h \
1874
  $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \
1875
  elf64-target.h
1876
elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \
1877
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1878
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1879
  $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
1880
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
1881
  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \
1882
  libcoff.h libecoff.h ecoffswap.h elf64-target.h
1883
elf64-hppa.lo: elf64-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1884
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1885
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h \
1886
  $(INCDIR)/elf/reloc-macros.h libhppa.h elf64-hppa.h \
1887
  elf-hppa.h elf64-target.h
1888
elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1889
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1890
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf64-target.h
1891
elfn32-mips.lo: elfn32-mips.c $(INCDIR)/filenames.h \
1892
  $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \
1893
  $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
1894
  elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1895
  $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
1896
  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \
1897
  ecoffswap.h elf32-target.h
1898
elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1899
  $(INCDIR)/aout/ar.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \
1900
  $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
1901
  elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1902
  $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
1903
  $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \
1904
  elf64-target.h
1905
elf64-mmix.lo: elf64-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1906
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1907
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mmix.h \
1908
  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
1909
  elf64-target.h
1910
elf64-ppc.lo: elf64-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1911
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1912
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/ppc64.h \
1913
  $(INCDIR)/elf/reloc-macros.h elf64-ppc.h elf64-target.h
1914
elf64-s390.lo: elf64-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1915
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1916
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/s390.h \
1917
  $(INCDIR)/elf/reloc-macros.h elf64-target.h
1918
elf64-sh64.lo: elf64-sh64.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1919
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1920
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/sh.h \
1921
  $(INCDIR)/elf/reloc-macros.h elf64-target.h
1922
elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \
1923
  $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1924
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1925
  $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
1926
  $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf64-target.h
1927
elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
1928
  $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1929
  $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfcore.h
1930
mmo.lo: mmo.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1931
  $(INCDIR)/libiberty.h $(INCDIR)/elf/mmix.h $(INCDIR)/elf/reloc-macros.h \
1932
  $(INCDIR)/opcode/mmix.h
1933
nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \
1934
  $(INCDIR)/hashtab.h $(INCDIR)/nlm/alpha-ext.h libnlm.h \
1935
  $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
1936
  nlmswap.h nlm-target.h
1937
nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1938
  libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1939
  $(INCDIR)/nlm/external.h
1940
coff-x86_64.lo: coff-x86_64.c $(INCDIR)/filenames.h \
1941
  $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
1942
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1943
  $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \
1944
  coffswap.h
1945
pe-x86_64.lo: pe-x86_64.c $(INCDIR)/filenames.h coff-x86_64.c \
1946
  $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
1947
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1948
  $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \
1949
  peicode.h libpei.h
1950
pei-x86_64.lo: pei-x86_64.c $(INCDIR)/filenames.h coff-x86_64.c \
1951
  $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
1952
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1953
  $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \
1954
  peicode.h libpei.h
1955
aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \
1956
  $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1957
  $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h
1958
hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1959
irix-core.lo: irix-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1960
lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1961
osf-core.lo: osf-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1962
sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1963
  libaout.h $(INCDIR)/bfdlink.h
1964
trad-core.lo: trad-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1965
  libaout.h $(INCDIR)/bfdlink.h
1966
cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1967
elf32-ia64.lo: elf32-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1968
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1969
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \
1970
  $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \
1971
  $(INCDIR)/hashtab.h elf32-target.h
1972
elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1973
  elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1974
  $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \
1975
  $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \
1976
  $(INCDIR)/hashtab.h elf64-target.h
1977
peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1978
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1979
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h
1980
pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1981
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \
1982
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h
1983
pex64igen.lo: pex64igen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1984
  $(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
1985
  $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h
1986
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.