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 \
41 ip2k-desc.h ip2k-opc.h \
42 iq2000-desc.h iq2000-opc.h \
43 m32c-desc.h m32c-opc.h \
44 m32r-desc.h m32r-opc.h \
46 mep-desc.h mep-opc.h \
48 openrisc-desc.h openrisc-opc.h \
54 xc16x-desc.h xc16x-opc.h \
55 xstormy16-desc.h xstormy16-opc.h \
58 # C source files that correspond to .o's.
354 OFILES = @BFD_MACHINES@
356 # We should reconfigure whenever bfd/configure.in changes, because
357 # that's where the version number in Makefile comes from.
358 CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
360 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ @INCINTL@
362 disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
363 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
365 libopcodes_la_SOURCES = dis-buf.c disassemble.c dis-init.c
366 # It's desirable to list ../bfd/libbfd.la in DEPENDENCIES and LIBADD.
367 # Unfortunately this causes libtool to add -L$(libdir), referring to the
368 # planned install directory of libbfd. This can cause us to pick up an
369 # old version of libbfd, or to pick up libbfd for the wrong architecture
370 # if host != build. So for building with shared libraries we use a
371 # hardcoded path to libbfd.so instead of relying on the entries in libbfd.la.
372 libopcodes_la_DEPENDENCIES = $(OFILES) @SHARED_DEPENDENCIES@
373 libopcodes_la_LIBADD = $(OFILES) @SHARED_LIBADD@
374 libopcodes_la_LDFLAGS = -release `cat ../bfd/libtool-soversion` @SHARED_LDFLAGS@
376 # libtool will build .libs/libopcodes.a. We create libopcodes.a in
377 # the build directory so that we don't have to convert all the
378 # programs that use libopcodes.a simultaneously. This is a hack which
379 # should be removed if everything else starts using libtool. FIXME.
381 noinst_LIBRARIES = libopcodes.a
383 stamp-lib: libopcodes.la
384 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
385 if [ -f $$libtooldir/libopcodes.a ]; then \
386 cp $$libtooldir/libopcodes.a libopcodes.tmp; \
387 $(RANLIB) libopcodes.tmp; \
388 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
392 libopcodes.a: stamp-lib ; @true
394 POTFILES = $(HFILES) $(CFILES)
395 po/POTFILES.in: @MAINT@ Makefile
396 for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
397 && mv tmp $(srcdir)/po/POTFILES.in
399 install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libopcodes
402 uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libopcodes
405 .PHONY: install_libopcodes uninstall_libopcodes
406 install_libopcodes: $(bfdlib_LTLIBRARIES)
407 $(mkinstalldirs) $(DESTDIR)$(bfdlibdir)
408 $(mkinstalldirs) $(DESTDIR)$(bfdincludedir)
409 @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
410 if test -f $$p; then \
411 echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \
412 $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \
415 $(INSTALL_DATA) $(INCDIR)/dis-asm.h $(DESTDIR)$(bfdincludedir)/dis-asm.h
417 uninstall_libopcodes:
418 list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
419 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \
421 rm -f $(DESTDIR)$(bfdincludedir)/dis-asm.h
424 stamp-ip2k stamp-m32c stamp-m32r stamp-fr30 stamp-frv \
425 stamp-openrisc stamp-iq2000 stamp-mep stamp-mt stamp-xstormy16 stamp-xc16x\
426 libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2
430 CPUDIR = $(CGENDIR)/cpu
431 CGEN = "`if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi` -l ${cgendir}/guile.scm -s"
435 $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
436 $(CGENDIR)/opcodes.scm $(CGENDIR)/opc-asmdis.scm \
437 $(CGENDIR)/opc-ibld.scm $(CGENDIR)/opc-itab.scm \
438 $(CGENDIR)/opc-opinst.scm \
439 cgen-asm.in cgen-dis.in cgen-ibld.in
441 CGEN_CPUS = fr30 frv ip2k m32c m32r mep mt openrisc xc16x xstormy16
444 IP2K_DEPS = stamp-ip2k
445 M32C_DEPS = stamp-m32c
446 M32R_DEPS = stamp-m32r
447 FR30_DEPS = stamp-fr30
451 OPENRISC_DEPS = stamp-openrisc
452 IQ2000_DEPS = stamp-iq2000
453 XC16X_DEPS = stamp-xc16x
454 XSTORMY16_DEPS = stamp-xstormy16
470 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGEN) \
471 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
472 "$(options)" "$(extrafiles)"
473 touch stamp-${prefix}
476 # Maintainer utility rule to regenerate all cgen files.
478 for c in $(CGEN_CPUS) ; \
480 $(MAKE) stamp-$$c || exit 1 ; \
484 # For now, require developers to configure with --enable-cgen-maint.
485 $(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)
487 stamp-ip2k: $(CGENDEPS) $(CPUDIR)/ip2k.cpu $(CPUDIR)/ip2k.opc
488 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
489 archfile=$(CPUDIR)/ip2k.cpu opcfile=$(CPUDIR)/ip2k.opc extrafiles=
491 $(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)
493 stamp-m32c: $(CGENDEPS) $(srcdir)/../cpu/m32c.cpu $(srcdir)/../cpu/m32c.opc
494 $(MAKE) run-cgen arch=m32c prefix=m32c options= \
495 archfile=$(srcdir)/../cpu/m32c.cpu \
496 opcfile=$(srcdir)/../cpu/m32c.opc extrafiles=
497 m32c_opc_h = m32c-opc.h cgen-types.h cgen-ops.h
498 m32c-asm.lo: m32c-asm.c sysdep.h config.h $(BFD_H) \
499 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h m32c-desc.h \
500 $(INCDIR)/opcode/cgen.h $(m32c_opc_h) opintl.h
501 m32c-desc.lo: m32c-desc.c sysdep.h config.h $(BFD_H) \
502 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h m32c-desc.h \
503 $(INCDIR)/opcode/cgen.h $(m32c_opc_h) opintl.h
504 m32c-dis.lo: m32c-dis.c sysdep.h config.h $(INCDIR)/dis-asm.h \
505 $(BFD_H) $(INCDIR)/ansidecl.h \
506 $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen.h \
507 $(m32c_opc_h) opintl.h
508 m32c-ibld.lo: m32c-ibld.c sysdep.h config.h $(INCDIR)/dis-asm.h \
509 $(BFD_H) $(INCDIR)/ansidecl.h \
510 $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen.h \
511 $(m32c_opc_h) opintl.h
512 m32c-opc.lo: m32c-opc.c sysdep.h config.h $(BFD_H) \
513 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h m32c-desc.h \
514 $(INCDIR)/opcode/cgen.h $(m32c_opc_h)
516 $(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)
518 stamp-m32r: $(CGENDEPS) $(srcdir)/../cpu/m32r.cpu $(srcdir)/../cpu/m32r.opc
519 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
520 archfile=$(srcdir)/../cpu/m32r.cpu \
521 opcfile=$(srcdir)/../cpu/m32r.opc extrafiles=opinst
523 $(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)
525 stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.cpu $(CPUDIR)/fr30.opc
526 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
527 archfile=$(CPUDIR)/fr30.cpu opcfile=$(CPUDIR)/fr30.opc extrafiles=
529 $(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)
531 stamp-frv: $(CGENDEPS) $(srcdir)/../cpu/frv.cpu $(srcdir)/../cpu/frv.opc
532 $(MAKE) run-cgen arch=frv prefix=frv options= \
533 archfile=$(srcdir)/../cpu/frv.cpu opcfile=$(srcdir)/../cpu/frv.opc extrafiles=
535 $(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)
537 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
538 $(MAKE) run-cgen arch=mep prefix=mep options= \
539 archfile=$(CPUDIR)/mep.cpu opcfile=$(CPUDIR)/mep.opc extrafiles=
541 $(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)
543 stamp-mt: $(CGENDEPS) $(srcdir)/../cpu/mt.cpu $(srcdir)/../cpu/mt.opc
544 $(MAKE) run-cgen arch=mt prefix=mt options= \
545 archfile=$(srcdir)/../cpu/mt.cpu \
546 opcfile=$(srcdir)/../cpu/mt.opc extrafiles=
548 $(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)
550 stamp-openrisc: $(CGENDEPS) $(CPUDIR)/openrisc.cpu $(CPUDIR)/openrisc.opc
551 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= \
552 archfile=$(CPUDIR)/openrisc.cpu opcfile=$(CPUDIR)/openrisc.opc extrafiles=
554 $(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)
556 stamp-iq2000: $(CGENDEPS) $(srcdir)/../cpu/iq2000.cpu \
557 $(srcdir)/../cpu/iq2000.opc $(srcdir)/../cpu/iq2000m.cpu \
558 $(srcdir)/../cpu/iq10.cpu
559 $(MAKE) run-cgen arch=iq2000 prefix=iq2000 options= \
560 archfile=$(srcdir)/../cpu/iq2000.cpu \
561 opcfile=$(srcdir)/../cpu/iq2000.opc extrafiles=
563 $(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)
565 stamp-xstormy16: $(CGENDEPS) $(CPUDIR)/xstormy16.cpu $(CPUDIR)/xstormy16.opc
566 $(MAKE) run-cgen arch=xstormy16 prefix=xstormy16 options= \
567 archfile=$(CPUDIR)/xstormy16.cpu opcfile=$(CPUDIR)/xstormy16.opc extrafiles=
569 $(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)
571 stamp-xc16x: $(CGENDEPS) $(CPUDIR)/xc16x.cpu $(CPUDIR)/xc16x.opc
572 $(MAKE) run-cgen arch=xc16x prefix=xc16x options= \
573 archfile=$(CPUDIR)/xc16x.cpu opcfile=$(CPUDIR)/xc16x.opc extrafiles=
576 $(LINK) i386-gen.o $(LIBIBERTY)
578 i386-gen.o: i386-gen.c i386-opc.h $(srcdir)/../include/opcode/i386.h
580 $(srcdir)/i386-tbl.h: $(srcdir)/i386-init.h
583 $(srcdir)/i386-init.h: @MAINT@ i386-gen i386-opc.tbl i386-reg.tbl
584 ./i386-gen --srcdir $(srcdir)
587 $(LINK) ia64-gen.o $(LIBIBERTY)
589 ia64-gen.o: ia64-gen.c ia64-opc.c ia64-opc-a.c ia64-opc-b.c ia64-opc-f.c \
590 ia64-opc-i.c ia64-opc-m.c ia64-opc-d.c ia64-opc.h
592 # Don't wrap the line below, as @MAINT@ can be expanded to '#'.
593 # Some make versions don't handle line continuations in comments.
594 $(srcdir)/ia64-asmtab.c: @MAINT@ ia64-gen ia64-ic.tbl ia64-raw.tbl ia64-waw.tbl ia64-war.tbl
595 ./ia64-gen --srcdir $(srcdir) > $@
597 s390-mkopc: s390-mkopc.c
598 $(CC_FOR_BUILD) -o s390-mkopc $(srcdir)/s390-mkopc.c
600 s390-opc.tab: s390-mkopc s390-opc.txt
601 ./s390-mkopc < $(srcdir)/s390-opc.txt > s390-opc.tab
604 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $<
606 # This dependency stuff is copied from BFD.
608 DEP: dep.sed $(CFILES) $(HFILES) config.h
610 $(MAKE) MKDEP="$(MKDEP)" DEP1
611 sed -f dep.sed < DEP1 > DEPA
612 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
613 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
614 echo 'make DEP failed!'; exit 1; \
620 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
621 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
622 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
625 dep.sed: dep-in.sed config.status
626 sed <$(srcdir)/dep-in.sed >dep.sed \
627 -e 's!@BFD_H@!$(BFD_H)!' \
628 -e 's!@INCDIR@!$(INCDIR)!' \
629 -e 's!@BFDDIR@!$(BFDDIR)!' \
630 -e 's!@SRCDIR@!$(srcdir)!' \
631 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/opcodes$$,,`'!'
634 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
635 cat DEP >> tmp-Makefile
636 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
639 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
640 cat DEP >> tmp-Makefile.in
641 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
644 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
645 cat DEP >> tmp-Makefile.am
646 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
648 .PHONY: dep dep-in dep-am
650 # What appears below is generated by a hacked mkdep using gcc -MM.
652 # DO NOT DELETE THIS LINE -- mkdep uses it.
653 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
654 alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
655 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/alpha.h
656 alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
657 $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/symcat.h \
659 arc-dis.lo: arc-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
660 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
661 $(INCDIR)/opcode/arc.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
662 $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
663 $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h opintl.h \
665 arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
666 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \
668 arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \
669 $(BFD_H) $(INCDIR)/symcat.h arc-ext.h $(INCDIR)/libiberty.h \
671 arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
672 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arm.h \
673 opintl.h $(INCDIR)/safe-ctype.h $(INCDIR)/floatformat.h \
674 $(INCDIR)/ansidecl.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
675 $(INCDIR)/bfdlink.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
676 $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/arm.h \
677 $(INCDIR)/elf/reloc-macros.h
678 avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
679 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \
680 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/opcode/avr.h
681 bfin-dis.lo: bfin-dis.c $(INCDIR)/opcode/bfin.h $(INCDIR)/dis-asm.h \
682 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
683 cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
684 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
685 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h \
686 $(INCDIR)/opcode/cgen-bitset.h opintl.h
687 cgen-bitset.lo: cgen-bitset.c $(INCDIR)/libiberty.h \
688 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/cgen-bitset.h
689 cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
690 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(BFD_H) \
691 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h
692 cgen-opc.lo: cgen-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
693 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
694 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h \
695 $(INCDIR)/opcode/cgen-bitset.h
696 cr16-dis.lo: cr16-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
697 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
698 $(INCDIR)/opcode/cr16.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
699 cr16-opc.lo: cr16-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
700 $(INCDIR)/symcat.h $(INCDIR)/opcode/cr16.h
701 cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
702 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
703 $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.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)/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) \
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)/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)/symcat.h $(INCDIR)/opcode/dlx.h
722 dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \
723 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h
724 dis-init.lo: dis-init.c sysdep.h config.h $(INCDIR)/ansidecl.h \
725 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
726 disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \
727 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
728 fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
729 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \
730 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
731 fr30-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
732 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
733 fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
734 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \
735 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
736 fr30-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
737 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
738 fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
739 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
740 $(INCDIR)/ansidecl.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \
741 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
743 fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
744 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \
745 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
746 $(INCDIR)/opcode/cgen-bitset.h fr30-opc.h opintl.h \
747 $(INCDIR)/safe-ctype.h
748 fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
749 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \
750 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
751 fr30-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
752 frv-asm.lo: frv-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
753 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \
754 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
755 frv-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
756 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
757 frv-desc.lo: frv-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
758 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \
759 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
760 frv-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
761 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
762 frv-dis.lo: frv-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
763 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
764 $(INCDIR)/ansidecl.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \
765 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
767 frv-ibld.lo: frv-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
768 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h frv-desc.h \
769 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
770 $(INCDIR)/opcode/cgen-bitset.h frv-opc.h opintl.h $(INCDIR)/safe-ctype.h
771 frv-opc.lo: frv-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
772 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \
773 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
774 frv-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
775 $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
776 h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
777 $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \
778 $(INCDIR)/symcat.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
779 h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
780 h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
782 hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
783 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(BFDDIR)/libhppa.h \
784 $(INCDIR)/opcode/hppa.h
785 i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
786 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/i370.h
787 i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
788 $(INCDIR)/opcode/i370.h
789 i386-dis.lo: i386-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
790 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \
791 $(INCDIR)/opcode/i386.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
792 i386-opc.lo: i386-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
793 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h i386-opc.h \
794 $(INCDIR)/opcode/i386.h i386-tbl.h
795 i386-gen.lo: i386-gen.c sysdep.h config.h $(INCDIR)/ansidecl.h \
796 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
797 $(INCDIR)/safe-ctype.h i386-opc.h $(INCDIR)/opcode/i386.h
798 i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
799 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h
800 i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
801 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
802 ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
803 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h
804 ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
805 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
806 ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
807 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
808 ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
809 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
810 ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
811 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
812 ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
813 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
814 ia64-opc-d.lo: ia64-opc-d.c
815 ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h sysdep.h \
816 config.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
817 ia64-asmtab.h $(INCDIR)/opcode/ia64.h $(BFD_H) $(INCDIR)/symcat.h \
819 ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
820 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h sysdep.h \
821 config.h $(INCDIR)/getopt.h ia64-opc.h $(INCDIR)/opcode/ia64.h \
822 $(BFD_H) $(INCDIR)/symcat.h ia64-opc-a.c ia64-opc-i.c \
823 ia64-opc-m.c ia64-opc-b.c ia64-opc-f.c ia64-opc-x.c \
825 ia64-asmtab.lo: ia64-asmtab.c
826 ip2k-asm.lo: ip2k-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
827 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \
828 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
829 ip2k-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
830 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
831 ip2k-desc.lo: ip2k-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
832 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \
833 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
834 ip2k-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
835 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
836 ip2k-dis.lo: ip2k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
837 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
838 $(INCDIR)/ansidecl.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \
839 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
841 ip2k-ibld.lo: ip2k-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
842 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h \
843 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
844 $(INCDIR)/opcode/cgen-bitset.h ip2k-opc.h opintl.h \
845 $(INCDIR)/safe-ctype.h
846 ip2k-opc.lo: ip2k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
847 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \
848 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
849 ip2k-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
850 $(INCDIR)/safe-ctype.h
851 iq2000-asm.lo: iq2000-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
852 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \
853 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
854 iq2000-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
855 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
856 iq2000-desc.lo: iq2000-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
857 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \
858 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
859 iq2000-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
860 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
861 iq2000-dis.lo: iq2000-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
862 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
863 $(INCDIR)/ansidecl.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \
864 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
865 iq2000-opc.h opintl.h
866 iq2000-ibld.lo: iq2000-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
867 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h \
868 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
869 $(INCDIR)/opcode/cgen-bitset.h iq2000-opc.h opintl.h \
870 $(INCDIR)/safe-ctype.h
871 iq2000-opc.lo: iq2000-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
872 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \
873 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
874 iq2000-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
875 m32c-asm.lo: m32c-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
876 $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \
877 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
878 m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \
879 opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
880 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
881 m32c-desc.lo: m32c-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
882 $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \
883 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
884 m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \
885 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
886 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
887 m32c-dis.lo: m32c-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
888 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
889 $(INCDIR)/ansidecl.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \
890 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
891 m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \
892 opintl.h $(INCDIR)/elf/m32c.h $(INCDIR)/elf/reloc-macros.h \
893 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
894 $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h
895 m32c-ibld.lo: m32c-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
896 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h \
897 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
898 $(INCDIR)/opcode/cgen-bitset.h m32c-opc.h cgen-types.h \
899 ../bfd/bfd_stdint.h cgen-ops.h opintl.h $(INCDIR)/safe-ctype.h
900 m32c-opc.lo: m32c-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
901 $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \
902 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
903 m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \
904 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
905 m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
906 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
907 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
908 m32r-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
909 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
910 m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
911 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
912 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
913 m32r-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
914 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
915 m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
916 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
917 $(INCDIR)/ansidecl.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
918 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
920 m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
921 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \
922 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
923 $(INCDIR)/opcode/cgen-bitset.h m32r-opc.h opintl.h \
924 $(INCDIR)/safe-ctype.h
925 m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
926 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
927 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
928 m32r-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
929 m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \
930 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
931 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
933 m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \
934 $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \
936 m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \
937 $(INCDIR)/opcode/m68hc11.h
938 m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
939 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/floatformat.h \
940 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h opintl.h \
941 $(INCDIR)/opcode/m68k.h
942 m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
943 $(INCDIR)/opcode/m68k.h
944 m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
945 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/m88k.h \
946 opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
947 maxq-dis.lo: maxq-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
948 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/maxq.h
949 mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
950 mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
951 mep-asm.lo: mep-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
952 $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \
953 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
954 mep-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
955 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
956 mep-desc.lo: mep-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
957 $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \
958 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
959 mep-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
960 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
961 mep-dis.lo: mep-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
962 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
963 $(INCDIR)/ansidecl.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \
964 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
965 mep-opc.h opintl.h $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h \
966 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
967 $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h
968 mep-ibld.lo: mep-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
969 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h mep-desc.h \
970 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
971 $(INCDIR)/opcode/cgen-bitset.h mep-opc.h opintl.h $(INCDIR)/safe-ctype.h
972 mep-opc.lo: mep-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
973 $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \
974 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
975 mep-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
976 $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h
977 mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
978 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
979 $(INCDIR)/ansidecl.h $(INCDIR)/opcode/mips.h opintl.h \
980 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
981 $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h \
982 $(INCDIR)/elf/reloc-macros.h
983 mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
984 $(INCDIR)/opcode/mips.h
985 mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
986 $(INCDIR)/opcode/mips.h
987 m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
988 $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \
989 $(INCDIR)/symcat.h opintl.h
990 m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
991 $(INCDIR)/opcode/mn10200.h
992 m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
993 $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \
994 $(INCDIR)/symcat.h opintl.h
995 m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
996 $(INCDIR)/opcode/mn10300.h
997 mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \
998 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
999 $(INCDIR)/ansidecl.h opintl.h
1000 mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h
1001 mt-asm.lo: mt-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1002 $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1003 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1004 mt-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
1005 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1006 mt-desc.lo: mt-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1007 $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1008 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1009 mt-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1010 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
1011 mt-dis.lo: mt-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1012 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
1013 $(INCDIR)/ansidecl.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1014 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1016 mt-ibld.lo: mt-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1017 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h mt-desc.h \
1018 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1019 $(INCDIR)/opcode/cgen-bitset.h mt-opc.h opintl.h $(INCDIR)/safe-ctype.h
1020 mt-opc.lo: mt-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1021 $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1022 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1023 mt-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1024 $(INCDIR)/safe-ctype.h
1025 ns32k-dis.lo: ns32k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1026 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ns32k.h \
1028 openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1029 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1030 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1031 openrisc-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
1032 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1033 openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \
1034 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \
1035 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1036 $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h opintl.h \
1037 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/xregex.h \
1039 openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1040 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
1041 $(INCDIR)/ansidecl.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1042 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1043 openrisc-opc.h opintl.h
1044 openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \
1045 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
1046 openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1047 $(INCDIR)/opcode/cgen-bitset.h openrisc-opc.h opintl.h \
1048 $(INCDIR)/safe-ctype.h
1049 openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1050 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1051 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1052 openrisc-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1053 or32-dis.lo: or32-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
1054 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/or32.h \
1055 $(INCDIR)/safe-ctype.h
1056 or32-opc.lo: or32-opc.c $(INCDIR)/safe-ctype.h $(INCDIR)/ansidecl.h \
1057 $(INCDIR)/opcode/or32.h
1058 pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1059 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/pdp11.h
1060 pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h
1061 pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1062 $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \
1064 pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1065 $(INCDIR)/opcode/pj.h
1066 ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1067 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/ppc.h
1068 ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1069 $(INCDIR)/opcode/ppc.h opintl.h
1070 s390-mkopc.lo: s390-mkopc.c
1071 s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \
1073 s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \
1074 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
1075 opintl.h $(INCDIR)/opcode/s390.h
1076 score-dis.lo: score-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1077 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h score-opc.h \
1078 opintl.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1079 $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \
1080 $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h
1081 sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1082 sh-opc.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h
1083 sh64-dis.lo: sh64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
1084 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
1085 sh64-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1086 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
1087 $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/sh.h \
1088 $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h
1089 sh64-opc.lo: sh64-opc.c sh64-opc.h
1090 sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1091 $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h $(BFD_H) \
1092 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1094 sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1095 $(INCDIR)/opcode/sparc.h
1096 spu-dis.lo: spu-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1097 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/spu.h \
1098 $(INCDIR)/opcode/spu-insns.h
1099 spu-opc.lo: spu-opc.c $(INCDIR)/opcode/spu.h $(INCDIR)/opcode/spu-insns.h
1100 tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1101 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic30.h
1102 tic4x-dis.lo: tic4x-dis.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1103 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
1104 $(INCDIR)/opcode/tic4x.h
1105 tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1106 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h \
1107 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h
1108 tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1109 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h
1110 tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1111 $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \
1113 tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1114 $(INCDIR)/opcode/tic80.h
1115 v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1116 $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \
1117 $(INCDIR)/symcat.h opintl.h
1118 v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1119 $(INCDIR)/opcode/v850.h opintl.h
1120 vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1121 $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \
1123 w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1124 w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
1125 xc16x-asm.lo: xc16x-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1126 $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1127 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1128 xc16x-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
1129 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1130 xc16x-desc.lo: xc16x-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1131 $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1132 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1133 xc16x-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1134 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
1135 xc16x-dis.lo: xc16x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1136 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
1137 $(INCDIR)/ansidecl.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1138 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1139 xc16x-opc.h opintl.h
1140 xc16x-ibld.lo: xc16x-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1141 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h \
1142 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1143 $(INCDIR)/opcode/cgen-bitset.h xc16x-opc.h opintl.h \
1144 $(INCDIR)/safe-ctype.h
1145 xc16x-opc.lo: xc16x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1146 $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \
1147 $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
1148 xc16x-opc.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1149 xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \
1150 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
1151 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1152 $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h opintl.h \
1153 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h \
1154 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
1155 xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \
1156 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
1157 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1158 $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h opintl.h \
1159 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/xregex.h \
1161 xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \
1162 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
1163 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h xstormy16-desc.h \
1164 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1165 $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h opintl.h
1166 xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \
1167 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
1168 xstormy16-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1169 $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h opintl.h \
1170 $(INCDIR)/safe-ctype.h
1171 xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \
1172 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
1173 $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
1174 $(INCDIR)/opcode/cgen-bitset.h xstormy16-opc.h $(INCDIR)/libiberty.h \
1175 $(INCDIR)/ansidecl.h
1176 xtensa-dis.lo: xtensa-dis.c $(INCDIR)/xtensa-isa.h \
1177 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1178 sysdep.h config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
1179 z80-dis.lo: z80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1180 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
1181 z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1182 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h z8k-opc.h
1183 z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h \
1184 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
1185 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY