1 ## Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = 1.9 cygnus
4 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
8 INCDIR = $(srcdir)/../include
9 BFDDIR = $(srcdir)/../bfd
12 WARN_CFLAGS = @WARN_CFLAGS@
13 NO_WERROR = @NO_WERROR@
14 AM_CFLAGS = $(WARN_CFLAGS)
16 bfdlibdir = @bfdlibdir@
17 bfdincludedir = @bfdincludedir@
22 bfdlib_LTLIBRARIES = libopcodes.la
24 # This is where bfd.h lives.
27 # This is where libiberty lives.
28 LIBIBERTY = ../libiberty/libiberty.a
32 cgen-ops.h cgen-types.h \
33 fr30-desc.h fr30-opc.h \
34 frv-desc.h frv-opc.h \
40 ip2k-desc.h ip2k-opc.h \
41 iq2000-desc.h iq2000-opc.h \
42 m32c-desc.h m32c-opc.h \
43 m32r-desc.h m32r-opc.h \
45 mep-desc.h mep-opc.h \
47 openrisc-desc.h openrisc-opc.h \
53 xc16x-desc.h xc16x-opc.h \
54 xstormy16-desc.h xstormy16-opc.h \
57 # C source files that correspond to .o's.
353 OFILES = @BFD_MACHINES@
355 # We should reconfigure whenever bfd/configure.in changes, because
356 # that's where the version number in Makefile comes from.
357 CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
359 INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
361 disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
362 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
364 libopcodes_la_SOURCES = dis-buf.c disassemble.c dis-init.c
365 # It's desirable to list ../bfd/libbfd.la in DEPENDENCIES and LIBADD.
366 # Unfortunately this causes libtool to add -L$(libdir), referring to the
367 # planned install directory of libbfd. This can cause us to pick up an
368 # old version of libbfd, or to pick up libbfd for the wrong architecture
370 libopcodes_la_DEPENDENCIES = $(OFILES)
371 libopcodes_la_LIBADD = $(OFILES) @WIN32LIBADD@
372 libopcodes_la_LDFLAGS = -release `cat ../bfd/libtool-soversion` @WIN32LDFLAGS@
374 # libtool will build .libs/libopcodes.a. We create libopcodes.a in
375 # the build directory so that we don't have to convert all the
376 # programs that use libopcodes.a simultaneously. This is a hack which
377 # should be removed if everything else starts using libtool. FIXME.
379 noinst_LIBRARIES = libopcodes.a
381 stamp-lib: libopcodes.la
382 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
383 if [ -f $$libtooldir/libopcodes.a ]; then \
384 cp $$libtooldir/libopcodes.a libopcodes.tmp; \
385 $(RANLIB) libopcodes.tmp; \
386 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
390 libopcodes.a: stamp-lib ; @true
392 POTFILES = $(HFILES) $(CFILES)
393 po/POTFILES.in: @MAINT@ Makefile
394 for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
395 && mv tmp $(srcdir)/po/POTFILES.in
397 install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libopcodes
400 uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libopcodes
403 .PHONY: install_libopcodes uninstall_libopcodes
404 install_libopcodes: $(bfdlib_LTLIBRARIES)
405 $(mkinstalldirs) $(DESTDIR)$(bfdlibdir)
406 $(mkinstalldirs) $(DESTDIR)$(bfdincludedir)
407 @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
408 if test -f $$p; then \
409 echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \
410 $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \
413 $(INSTALL_DATA) $(INCDIR)/dis-asm.h $(DESTDIR)$(bfdincludedir)/dis-asm.h
415 uninstall_libopcodes:
416 list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
417 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \
419 rm -f $(DESTDIR)$(bfdincludedir)/dis-asm.h
422 stamp-ip2k stamp-m32c stamp-m32r stamp-fr30 stamp-frv \
423 stamp-openrisc stamp-iq2000 stamp-mep stamp-mt stamp-xstormy16 stamp-xc16x\
424 libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2
428 CPUDIR = $(CGENDIR)/cpu
429 CGEN = "`if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi` -l ${cgendir}/guile.scm -s"
433 $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
434 $(CGENDIR)/opcodes.scm $(CGENDIR)/opc-asmdis.scm \
435 $(CGENDIR)/opc-ibld.scm $(CGENDIR)/opc-itab.scm \
436 $(CGENDIR)/opc-opinst.scm \
437 cgen-asm.in cgen-dis.in cgen-ibld.in
439 CGEN_CPUS = fr30 frv ip2k m32c m32r mep mt openrisc xc16x xstormy16
442 IP2K_DEPS = stamp-ip2k
443 M32C_DEPS = stamp-m32c
444 M32R_DEPS = stamp-m32r
445 FR30_DEPS = stamp-fr30
449 OPENRISC_DEPS = stamp-openrisc
450 IQ2000_DEPS = stamp-iq2000
451 XC16X_DEPS = stamp-xc16x
452 XSTORMY16_DEPS = stamp-xstormy16
468 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGEN) \
469 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
470 "$(options)" "$(extrafiles)"
471 touch stamp-${prefix}
474 # Maintainer utility rule to regenerate all cgen files.
476 for c in $(CGEN_CPUS) ; \
478 $(MAKE) stamp-$$c || exit 1 ; \
482 # For now, require developers to configure with --enable-cgen-maint.
483 $(srcdir)/ip2k-desc.h $(srcdir)/ip2k-desc.c $(srcdir)/ip2k-opc.h $(srcdir)/ip2k-opc.c $(srcdir)/ip2k-ibld.c $(srcdir)/ip2k-asm.c $(srcdir)/ip2k-dis.c: $(IP2K_DEPS)
485 stamp-ip2k: $(CGENDEPS) $(CPUDIR)/ip2k.cpu $(CPUDIR)/ip2k.opc
486 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
487 archfile=$(CPUDIR)/ip2k.cpu opcfile=$(CPUDIR)/ip2k.opc extrafiles=
489 $(srcdir)/m32c-desc.h $(srcdir)/m32c-desc.c $(srcdir)/m32c-opc.h $(srcdir)/m32c-opc.c $(srcdir)/m32c-ibld.c $(srcdir)/m32c-asm.c $(srcdir)/m32c-dis.c: $(M32C_DEPS)
491 stamp-m32c: $(CGENDEPS) $(srcdir)/../cpu/m32c.cpu $(srcdir)/../cpu/m32c.opc
492 $(MAKE) run-cgen arch=m32c prefix=m32c options= \
493 archfile=$(srcdir)/../cpu/m32c.cpu \
494 opcfile=$(srcdir)/../cpu/m32c.opc extrafiles=
495 m32c_opc_h = m32c-opc.h cgen-types.h cgen-ops.h
496 m32c-asm.lo: m32c-asm.c sysdep.h config.h $(BFD_H) \
497 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h m32c-desc.h \
498 $(INCDIR)/opcode/cgen.h $(m32c_opc_h) opintl.h
499 m32c-desc.lo: m32c-desc.c sysdep.h config.h $(BFD_H) \
500 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h m32c-desc.h \
501 $(INCDIR)/opcode/cgen.h $(m32c_opc_h) opintl.h
502 m32c-dis.lo: m32c-dis.c sysdep.h config.h $(INCDIR)/dis-asm.h \
503 $(BFD_H) $(INCDIR)/ansidecl.h \
504 $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen.h \
505 $(m32c_opc_h) opintl.h
506 m32c-ibld.lo: m32c-ibld.c sysdep.h config.h $(INCDIR)/dis-asm.h \
507 $(BFD_H) $(INCDIR)/ansidecl.h \
508 $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen.h \
509 $(m32c_opc_h) opintl.h
510 m32c-opc.lo: m32c-opc.c sysdep.h config.h $(BFD_H) \
511 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h m32c-desc.h \
512 $(INCDIR)/opcode/cgen.h $(m32c_opc_h)
514 $(srcdir)/m32r-desc.h $(srcdir)/m32r-desc.c $(srcdir)/m32r-opc.h $(srcdir)/m32r-opc.c $(srcdir)/m32r-ibld.c $(srcdir)/m32r-opinst.c $(srcdir)/m32r-asm.c $(srcdir)/m32r-dis.c: $(M32R_DEPS)
516 stamp-m32r: $(CGENDEPS) $(srcdir)/../cpu/m32r.cpu $(srcdir)/../cpu/m32r.opc
517 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
518 archfile=$(srcdir)/../cpu/m32r.cpu \
519 opcfile=$(srcdir)/../cpu/m32r.opc extrafiles=opinst
521 $(srcdir)/fr30-desc.h $(srcdir)/fr30-desc.c $(srcdir)/fr30-opc.h $(srcdir)/fr30-opc.c $(srcdir)/fr30-ibld.c $(srcdir)/fr30-asm.c $(srcdir)/fr30-dis.c: $(FR30_DEPS)
523 stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.cpu $(CPUDIR)/fr30.opc
524 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
525 archfile=$(CPUDIR)/fr30.cpu opcfile=$(CPUDIR)/fr30.opc extrafiles=
527 $(srcdir)/frv-desc.h $(srcdir)/frv-desc.c $(srcdir)/frv-opc.h $(srcdir)/frv-opc.c $(srcdir)/frv-ibld.c $(srcdir)/frv-asm.c $(srcdir)/frv-dis.c: $(FRV_DEPS)
529 stamp-frv: $(CGENDEPS) $(srcdir)/../cpu/frv.cpu $(srcdir)/../cpu/frv.opc
530 $(MAKE) run-cgen arch=frv prefix=frv options= \
531 archfile=$(srcdir)/../cpu/frv.cpu opcfile=$(srcdir)/../cpu/frv.opc extrafiles=
533 $(srcdir)/mep-desc.h $(srcdir)/mep-desc.c $(srcdir)/mep-opc.h $(srcdir)/mep-opc.c $(srcdir)/mep-ibld.c $(srcdir)/mep-asm.c $(srcdir)/mep-dis.c: $(MEP_DEPS)
535 stamp-mep: $(CGENDEPS) $(CPUDIR)/mep.cpu $(CPUDIR)/mep-default.cpu $(CPUDIR)/mep-core.cpu $(CPUDIR)/mep-h1.cpu $(CPUDIR)/mep-ext-cop.cpu $(CPUDIR)/mep-sample-ucidsp.cpu $(CPUDIR)/mep-rhcop.cpu $(CPUDIR)/mep-fmax.cpu $(CPUDIR)/mep.opc
536 $(MAKE) run-cgen arch=mep prefix=mep options= \
537 archfile=$(CPUDIR)/mep.cpu opcfile=$(CPUDIR)/mep.opc extrafiles=
539 $(srcdir)/mt-desc.h $(srcdir)/mt-desc.c $(srcdir)/mt-opc.h $(srcdir)/mt-opc.c $(srcdir)/mt-ibld.c $(srcdir)/mt-asm.c $(srcdir)/mt-dis.c: $(MT_DEPS)
541 stamp-mt: $(CGENDEPS) $(srcdir)/../cpu/mt.cpu $(srcdir)/../cpu/mt.opc
542 $(MAKE) run-cgen arch=mt prefix=mt options= \
543 archfile=$(srcdir)/../cpu/mt.cpu \
544 opcfile=$(srcdir)/../cpu/mt.opc extrafiles=
546 $(srcdir)/openrisc-desc.h $(srcdir)/openrisc-desc.c $(srcdir)/openrisc-opc.h $(srcdir)/openrisc-opc.c $(srcdir)/openrisc-ibld.c $(srcdir)/openrisc-asm.c $(srcdir)/openrisc-dis.c: $(OPENRISC_DEPS)
548 stamp-openrisc: $(CGENDEPS) $(CPUDIR)/openrisc.cpu $(CPUDIR)/openrisc.opc
549 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= \
550 archfile=$(CPUDIR)/openrisc.cpu opcfile=$(CPUDIR)/openrisc.opc extrafiles=
552 $(srcdir)/iq2000-desc.h $(srcdir)/iq2000-desc.c $(srcdir)/iq2000-opc.h $(srcdir)/iq2000-opc.c $(srcdir)/iq2000-ibld.c $(srcdir)/iq2000-asm.c $(srcdir)/iq2000-dis.c: $(IQ2000_DEPS)
554 stamp-iq2000: $(CGENDEPS) $(srcdir)/../cpu/iq2000.cpu \
555 $(srcdir)/../cpu/iq2000.opc $(srcdir)/../cpu/iq2000m.cpu \
556 $(srcdir)/../cpu/iq10.cpu
557 $(MAKE) run-cgen arch=iq2000 prefix=iq2000 options= \
558 archfile=$(srcdir)/../cpu/iq2000.cpu \
559 opcfile=$(srcdir)/../cpu/iq2000.opc extrafiles=
561 $(srcdir)/xstormy16-desc.h $(srcdir)/xstormy16-desc.c $(srcdir)/xstormy16-opc.h $(srcdir)/xstormy16-opc.c $(srcdir)/xstormy16-ibld.c $(srcdir)/xstormy16-asm.c $(srcdir)/xstormy16-dis.c: $(XSTORMY16_DEPS)
563 stamp-xstormy16: $(CGENDEPS) $(CPUDIR)/xstormy16.cpu $(CPUDIR)/xstormy16.opc
564 $(MAKE) run-cgen arch=xstormy16 prefix=xstormy16 options= \
565 archfile=$(CPUDIR)/xstormy16.cpu opcfile=$(CPUDIR)/xstormy16.opc extrafiles=
567 $(srcdir)/xc16x-desc.h $(srcdir)/xc16x-desc.c $(srcdir)/xc16x-opc.h $(srcdir)/xc16x-opc.c $(srcdir)/xc16x-ibld.c $(srcdir)/xc16x-asm.c $(srcdir)/xc16x-dis.c: $(XC16X_DEPS)
569 stamp-xc16x: $(CGENDEPS) $(CPUDIR)/xc16x.cpu $(CPUDIR)/xc16x.opc
570 $(MAKE) run-cgen arch=xc16x prefix=xc16x options= \
571 archfile=$(CPUDIR)/xc16x.cpu opcfile=$(CPUDIR)/xc16x.opc extrafiles=
574 $(LINK) i386-gen.o $(LIBIBERTY)
576 i386-gen.o: i386-gen.c i386-opc.h
578 $(srcdir)/i386-tbl.h: @MAINT@ i386-gen i386-opc.tbl i386-reg.tbl
579 ./i386-gen --srcdir $(srcdir) > $@
582 $(LINK) ia64-gen.o $(LIBIBERTY)
584 ia64-gen.o: ia64-gen.c ia64-opc.c ia64-opc-a.c ia64-opc-b.c ia64-opc-f.c \
585 ia64-opc-i.c ia64-opc-m.c ia64-opc-d.c ia64-opc.h
587 $(srcdir)/ia64-asmtab.c: @MAINT@ ia64-gen ia64-ic.tbl ia64-raw.tbl \
588 ia64-waw.tbl ia64-war.tbl
589 ./ia64-gen --srcdir $(srcdir) > $@
591 s390-mkopc: s390-mkopc.c
592 $(CC_FOR_BUILD) -o s390-mkopc $(srcdir)/s390-mkopc.c
594 s390-opc.tab: s390-mkopc s390-opc.txt
595 ./s390-mkopc < $(srcdir)/s390-opc.txt > s390-opc.tab
598 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $<
600 # This dependency stuff is copied from BFD.
602 DEP: dep.sed $(CFILES) $(HFILES) config.h
604 $(MAKE) MKDEP="$(MKDEP)" DEP1
605 sed -f dep.sed < DEP1 > DEPA
606 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
607 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
608 echo 'make DEP failed!'; exit 1; \
614 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
615 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
616 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
619 dep.sed: dep-in.sed config.status
620 sed <$(srcdir)/dep-in.sed >dep.sed \
621 -e 's!@BFD_H@!$(BFD_H)!' \
622 -e 's!@INCDIR@!$(INCDIR)!' \
623 -e 's!@BFDDIR@!$(BFDDIR)!' \
624 -e 's!@SRCDIR@!$(srcdir)!' \
625 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/opcodes$$,,`'!'
628 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
629 cat DEP >> tmp-Makefile
630 $(srcdir)/../move-if-change tmp-Makefile Makefile
633 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
634 cat DEP >> tmp-Makefile.in
635 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
638 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
639 cat DEP >> tmp-Makefile.am
640 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
642 .PHONY: dep dep-in dep-am
644 # What appears below is generated by a hacked mkdep using gcc -MM.
646 # DO NOT DELETE THIS LINE -- mkdep uses it.
647 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
648 alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
649 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
650 $(INCDIR)/opcode/alpha.h
651 alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
652 $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/ansidecl.h \
653 $(INCDIR)/symcat.h opintl.h
654 arc-dis.lo: arc-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
655 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
656 $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h $(BFDDIR)/elf-bfd.h \
657 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
658 $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h \
659 opintl.h arc-dis.h arc-ext.h
660 arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
661 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \
663 arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \
664 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h arc-ext.h \
665 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
666 arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
667 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
668 $(INCDIR)/opcode/arm.h opintl.h $(INCDIR)/safe-ctype.h \
669 $(INCDIR)/floatformat.h $(INCDIR)/ansidecl.h $(INCDIR)/coff/internal.h \
670 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(BFDDIR)/elf-bfd.h \
671 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
672 $(INCDIR)/elf/internal.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h
673 avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
674 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
675 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
676 $(INCDIR)/opcode/avr.h
677 bfin-dis.lo: bfin-dis.c $(INCDIR)/opcode/bfin.h $(INCDIR)/dis-asm.h \
678 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
679 cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
680 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
681 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
682 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
684 cgen-bitset.lo: cgen-bitset.c $(INCDIR)/libiberty.h \
685 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/cgen-bitset.h
686 cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
687 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(BFD_H) \
688 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
689 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h
690 cgen-opc.lo: cgen-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
691 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
692 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
693 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h
694 cr16-dis.lo: cr16-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
695 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
696 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/cr16.h $(INCDIR)/libiberty.h \
698 cr16-opc.lo: cr16-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
699 $(INCDIR)/symcat.h $(INCDIR)/opcode/cr16.h
700 cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
701 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
702 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h \
704 cris-opc.lo: cris-opc.c $(INCDIR)/opcode/cris.h
705 crx-dis.lo: crx-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
706 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
707 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/crx.h
708 crx-opc.lo: crx-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
709 $(INCDIR)/symcat.h $(INCDIR)/opcode/crx.h
710 d10v-dis.lo: d10v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
711 $(INCDIR)/opcode/d10v.h $(INCDIR)/dis-asm.h $(BFD_H) \
712 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
713 d10v-opc.lo: d10v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
714 $(INCDIR)/opcode/d10v.h
715 d30v-dis.lo: d30v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
716 $(INCDIR)/opcode/d30v.h $(INCDIR)/dis-asm.h $(BFD_H) \
717 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h opintl.h
718 d30v-opc.lo: d30v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
719 $(INCDIR)/opcode/d30v.h
720 dlx-dis.lo: dlx-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
721 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
722 $(INCDIR)/opcode/dlx.h
723 dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \
724 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
726 dis-init.lo: dis-init.c sysdep.h config.h $(INCDIR)/ansidecl.h \
727 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
729 disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \
730 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
731 fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
732 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
733 fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
734 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h fr30-opc.h \
735 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
736 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
737 fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
738 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
739 fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
740 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h fr30-opc.h \
741 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
742 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
743 fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
744 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
745 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
746 fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
747 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h fr30-opc.h \
749 fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
750 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
751 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \
752 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
753 fr30-opc.h opintl.h $(INCDIR)/safe-ctype.h
754 fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
755 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
756 fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
757 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h fr30-opc.h \
758 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
759 frv-asm.lo: frv-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
760 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
761 frv-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
762 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h frv-opc.h \
763 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
764 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
765 frv-desc.lo: frv-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
766 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
767 frv-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
768 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h frv-opc.h \
769 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
770 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
771 frv-dis.lo: frv-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
772 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
773 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
774 frv-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
775 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h frv-opc.h \
777 frv-ibld.lo: frv-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
778 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
779 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \
780 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
781 frv-opc.h opintl.h $(INCDIR)/safe-ctype.h
782 frv-opc.lo: frv-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
783 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
784 frv-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
785 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h frv-opc.h \
786 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/elf/frv.h \
787 $(INCDIR)/elf/reloc-macros.h
788 h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
789 $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \
790 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h opintl.h $(INCDIR)/libiberty.h \
792 h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
793 h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
794 $(INCDIR)/symcat.h opintl.h
795 hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
796 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
797 $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h
798 i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
799 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
800 $(INCDIR)/opcode/i370.h
801 i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
802 $(INCDIR)/opcode/i370.h
803 i386-dis.lo: i386-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
804 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
805 $(INCDIR)/ansidecl.h opintl.h $(INCDIR)/opcode/i386.h
806 i386-opc.lo: i386-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
807 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h i386-opc.h \
808 $(INCDIR)/opcode/i386.h i386-tbl.h
809 i386-gen.lo: i386-gen.c $(INCDIR)/getopt.h $(INCDIR)/libiberty.h \
810 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h i386-opc.h \
811 $(INCDIR)/opcode/i386.h
812 i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
813 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h
814 i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
815 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
816 ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
817 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h \
819 ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
820 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
821 ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
822 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
823 ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
824 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
825 ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
826 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
827 ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
828 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
829 ia64-opc-d.lo: ia64-opc-d.c
830 ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h sysdep.h \
831 config.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
832 ia64-asmtab.h $(INCDIR)/opcode/ia64.h $(BFD_H) $(INCDIR)/ansidecl.h \
833 $(INCDIR)/symcat.h ia64-asmtab.c
834 ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
835 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h sysdep.h \
836 config.h $(INCDIR)/getopt.h ia64-opc.h $(INCDIR)/opcode/ia64.h \
837 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h ia64-opc-a.c \
838 ia64-opc-i.c ia64-opc-m.c ia64-opc-b.c ia64-opc-f.c \
839 ia64-opc-x.c ia64-opc-d.c
840 ia64-asmtab.lo: ia64-asmtab.c
841 ip2k-asm.lo: ip2k-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
842 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
843 ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
844 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h ip2k-opc.h \
845 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
846 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
847 ip2k-desc.lo: ip2k-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
848 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
849 ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
850 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h ip2k-opc.h \
851 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
852 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
853 ip2k-dis.lo: ip2k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
854 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
855 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
856 ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
857 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h ip2k-opc.h \
859 ip2k-ibld.lo: ip2k-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
860 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
861 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \
862 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
863 ip2k-opc.h opintl.h $(INCDIR)/safe-ctype.h
864 ip2k-opc.lo: ip2k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
865 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
866 ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
867 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h ip2k-opc.h \
868 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
869 iq2000-asm.lo: iq2000-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
870 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
871 iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
872 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h iq2000-opc.h \
873 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
874 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
875 iq2000-desc.lo: iq2000-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
876 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
877 iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
878 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h iq2000-opc.h \
879 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
880 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
881 iq2000-dis.lo: iq2000-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
882 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
883 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
884 iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
885 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h iq2000-opc.h \
887 iq2000-ibld.lo: iq2000-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
888 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
889 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \
890 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
891 iq2000-opc.h opintl.h $(INCDIR)/safe-ctype.h
892 iq2000-opc.lo: iq2000-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
893 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
894 iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
895 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h iq2000-opc.h \
896 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
897 m32c-asm.lo: m32c-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
898 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
899 m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
900 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32c-opc.h \
901 cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h opintl.h \
902 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
903 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
904 m32c-desc.lo: m32c-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
905 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
906 m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
907 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32c-opc.h \
908 cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h opintl.h \
909 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/xregex.h \
911 m32c-dis.lo: m32c-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
912 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
913 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
914 m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
915 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32c-opc.h \
916 cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h opintl.h \
917 $(INCDIR)/elf/m32c.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf-bfd.h \
918 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
920 m32c-ibld.lo: m32c-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
921 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
922 $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \
923 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
924 m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \
925 opintl.h $(INCDIR)/safe-ctype.h
926 m32c-opc.lo: m32c-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
927 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
928 m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
929 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32c-opc.h \
930 cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h $(INCDIR)/libiberty.h \
932 m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
933 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
934 m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
935 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32r-opc.h \
936 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
937 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
938 m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
939 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
940 m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
941 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32r-opc.h \
942 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
943 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
944 m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
945 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
946 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
947 m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
948 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32r-opc.h \
950 m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
951 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
952 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
953 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
954 m32r-opc.h opintl.h $(INCDIR)/safe-ctype.h
955 m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
956 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
957 m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
958 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32r-opc.h \
959 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
960 m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \
961 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
962 m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
963 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h m32r-opc.h
964 m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \
965 $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \
966 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
967 m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \
968 $(INCDIR)/opcode/m68hc11.h
969 m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
970 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
971 $(INCDIR)/floatformat.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
972 opintl.h $(INCDIR)/opcode/m68k.h
973 m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
974 $(INCDIR)/opcode/m68k.h
975 m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
976 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
977 $(INCDIR)/opcode/m88k.h opintl.h $(INCDIR)/libiberty.h \
979 maxq-dis.lo: maxq-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
980 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
981 $(INCDIR)/opcode/maxq.h
982 mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
983 mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
985 mep-asm.lo: mep-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
986 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
987 mep-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
988 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mep-opc.h \
989 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
990 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
991 mep-desc.lo: mep-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
992 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
993 mep-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
994 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mep-opc.h \
995 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
996 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
997 mep-dis.lo: mep-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
998 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
999 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1000 mep-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1001 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mep-opc.h \
1002 opintl.h $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h \
1003 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1004 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h
1005 mep-ibld.lo: mep-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1006 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1007 $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1008 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
1009 mep-opc.h opintl.h $(INCDIR)/safe-ctype.h
1010 mep-opc.lo: mep-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1011 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1012 mep-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1013 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mep-opc.h \
1014 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/elf/mep.h \
1015 $(INCDIR)/elf/reloc-macros.h
1016 mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1017 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1018 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mips.h \
1019 opintl.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1020 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1021 $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
1022 mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1023 $(INCDIR)/opcode/mips.h
1024 mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1025 $(INCDIR)/opcode/mips.h
1026 m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1027 $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \
1028 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h opintl.h
1029 m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1030 $(INCDIR)/opcode/mn10200.h
1031 m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1032 $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \
1033 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h opintl.h
1034 m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1035 $(INCDIR)/opcode/mn10300.h
1036 mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \
1037 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
1038 $(INCDIR)/ansidecl.h $(BFD_H) opintl.h
1039 mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h
1040 mt-asm.lo: mt-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1041 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1042 mt-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1043 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mt-opc.h \
1044 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
1045 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1046 mt-desc.lo: mt-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1047 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1048 mt-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1049 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mt-opc.h \
1050 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1051 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
1052 mt-dis.lo: mt-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1053 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1054 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1055 mt-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1056 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mt-opc.h \
1058 mt-ibld.lo: mt-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1059 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1060 $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1061 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
1062 mt-opc.h opintl.h $(INCDIR)/safe-ctype.h
1063 mt-opc.lo: mt-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1064 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1065 mt-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1066 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h mt-opc.h \
1067 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1068 ns32k-dis.lo: ns32k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1069 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h \
1070 $(BFD_H) $(INCDIR)/opcode/ns32k.h opintl.h
1071 openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1072 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1073 openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1074 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h \
1075 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
1076 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1077 openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \
1078 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/ansidecl.h \
1079 $(INCDIR)/symcat.h $(INCDIR)/symcat.h openrisc-desc.h \
1080 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1081 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h \
1082 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1083 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
1084 openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1085 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1086 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1087 openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1088 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h \
1090 openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \
1091 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
1092 $(INCDIR)/symcat.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \
1093 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1094 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h \
1095 opintl.h $(INCDIR)/safe-ctype.h
1096 openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1097 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1098 openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1099 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h \
1100 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1101 or32-dis.lo: or32-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
1102 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/or32.h \
1103 $(INCDIR)/safe-ctype.h
1104 or32-opc.lo: or32-opc.c $(INCDIR)/safe-ctype.h $(INCDIR)/ansidecl.h \
1105 $(INCDIR)/opcode/or32.h
1106 pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1107 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1108 $(INCDIR)/opcode/pdp11.h
1109 pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h
1110 pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1111 $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \
1112 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
1113 pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1114 $(INCDIR)/opcode/pj.h
1115 ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1116 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1117 $(INCDIR)/opcode/ppc.h
1118 ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1119 $(INCDIR)/opcode/ppc.h opintl.h
1120 s390-mkopc.lo: s390-mkopc.c
1121 s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \
1123 s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \
1124 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
1125 $(INCDIR)/symcat.h $(INCDIR)/opcode/s390.h
1126 score-dis.lo: score-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1127 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1128 score-opc.h opintl.h $(BFD_H) $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1129 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1130 $(INCDIR)/elf/internal.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h
1131 sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1132 sh-opc.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1133 $(INCDIR)/dis-asm.h $(BFD_H)
1134 sh64-dis.lo: sh64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
1135 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
1136 $(INCDIR)/ansidecl.h sh64-opc.h $(INCDIR)/libiberty.h \
1137 $(INCDIR)/ansidecl.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1138 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1139 $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h
1140 sh64-opc.lo: sh64-opc.c sh64-opc.h
1141 sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1142 $(INCDIR)/opcode/sparc.h $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h \
1143 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
1144 $(INCDIR)/ansidecl.h opintl.h
1145 sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1146 $(INCDIR)/opcode/sparc.h $(INCDIR)/ansidecl.h
1147 spu-dis.lo: spu-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1148 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1149 $(INCDIR)/opcode/spu.h $(INCDIR)/opcode/spu-insns.h
1150 spu-opc.lo: spu-opc.c $(INCDIR)/opcode/spu.h $(INCDIR)/opcode/spu-insns.h \
1151 $(INCDIR)/opcode/spu-insns.h
1152 tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1153 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1154 $(INCDIR)/opcode/tic30.h
1155 tic4x-dis.lo: tic4x-dis.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1156 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1157 $(INCDIR)/opcode/tic4x.h
1158 tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1159 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1160 $(INCDIR)/opcode/tic54x.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h
1161 tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1162 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1163 $(INCDIR)/opcode/tic54x.h
1164 tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1165 $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \
1166 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
1167 tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1168 $(INCDIR)/opcode/tic80.h
1169 v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1170 $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \
1171 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h opintl.h
1172 v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1173 $(INCDIR)/opcode/v850.h opintl.h
1174 vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1175 $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \
1176 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
1177 w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1178 w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
1180 xc16x-asm.lo: xc16x-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1181 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1182 xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1183 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xc16x-opc.h \
1184 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
1185 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1186 xc16x-desc.lo: xc16x-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1187 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1188 xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1189 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xc16x-opc.h \
1190 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1191 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
1192 xc16x-dis.lo: xc16x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1193 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1194 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1195 xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1196 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xc16x-opc.h \
1198 xc16x-ibld.lo: xc16x-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1199 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1200 $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1201 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
1202 xc16x-opc.h opintl.h $(INCDIR)/safe-ctype.h
1203 xc16x-opc.lo: xc16x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1204 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/symcat.h \
1205 xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1206 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xc16x-opc.h \
1207 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1208 xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \
1209 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/ansidecl.h \
1210 $(INCDIR)/symcat.h $(INCDIR)/symcat.h xstormy16-desc.h \
1211 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1212 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h \
1213 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
1214 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1215 xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \
1216 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/ansidecl.h \
1217 $(INCDIR)/symcat.h $(INCDIR)/symcat.h xstormy16-desc.h \
1218 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1219 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h \
1220 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1221 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
1222 xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \
1223 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
1224 $(INCDIR)/symcat.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
1225 $(INCDIR)/ansidecl.h xstormy16-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1226 $(INCDIR)/opcode/cgen.h $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h \
1227 xstormy16-opc.h opintl.h
1228 xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \
1229 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
1230 $(INCDIR)/symcat.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
1231 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1232 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h \
1233 opintl.h $(INCDIR)/safe-ctype.h
1234 xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \
1235 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/ansidecl.h \
1236 $(INCDIR)/symcat.h $(INCDIR)/symcat.h xstormy16-desc.h \
1237 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1238 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h \
1239 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1240 xtensa-dis.lo: xtensa-dis.c $(INCDIR)/xtensa-isa.h \
1241 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1242 sysdep.h config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h \
1244 z80-dis.lo: z80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1245 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
1246 z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1247 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1249 z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1250 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1251 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY