1 ## Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = 1.9 cygnus
7 INCDIR = $(srcdir)/../include
8 BFDDIR = $(srcdir)/../bfd
11 WARN_CFLAGS = @WARN_CFLAGS@
12 AM_CFLAGS = $(WARN_CFLAGS)
14 bfdlibdir = @bfdlibdir@
15 bfdincludedir = @bfdincludedir@
17 bfdlib_LTLIBRARIES = libopcodes.la
19 # This is where bfd.h lives.
22 # This is where libiberty lives.
23 LIBIBERTY = ../libiberty/libiberty.a
28 fr30-desc.h fr30-opc.h \
29 frv-desc.h frv-opc.h \
33 ip2k-desc.h ip2k-opc.h \
34 iq2000-desc.h iq2000-opc.h \
35 m32r-desc.h m32r-opc.h \
37 openrisc-desc.h openrisc-opc.h \
42 xstormy16-desc.h xstormy16-opc.h \
45 # C source files that correspond to .o's.
284 OFILES = @BFD_MACHINES@
286 # We should reconfigure whenever bfd/configure.in changes, because
287 # that's where the version number in Makefile comes from.
288 CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in
290 INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ -I$(srcdir)/../intl -I../intl
292 disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
293 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
295 libopcodes_la_SOURCES = dis-buf.c disassemble.c dis-init.c
296 # It's desirable to list ../bfd/libbfd.la in DEPENDENCIES and LIBADD.
297 # Unfortunately this causes libtool to add -L$(libdir), referring to the
298 # planned install directory of libbfd. This can cause us to pick up an
299 # old version of libbfd, or to pick up libbfd for the wrong architecture
301 libopcodes_la_DEPENDENCIES = $(OFILES)
302 libopcodes_la_LIBADD = $(OFILES) @WIN32LIBADD@
303 libopcodes_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@
305 # libtool will build .libs/libopcodes.a. We create libopcodes.a in
306 # the build directory so that we don't have to convert all the
307 # programs that use libopcodes.a simultaneously. This is a hack which
308 # should be removed if everything else starts using libtool. FIXME.
310 noinst_LIBRARIES = libopcodes.a
312 stamp-lib: libopcodes.la
313 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
314 if [ -f $$libtooldir/libopcodes.a ]; then \
315 cp $$libtooldir/libopcodes.a libopcodes.tmp; \
316 $(RANLIB) libopcodes.tmp; \
317 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
321 libopcodes.a: stamp-lib ; @true
323 POTFILES = $(HFILES) $(CFILES)
324 po/POTFILES.in: @MAINT@ Makefile
325 for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
326 && mv tmp $(srcdir)/po/POTFILES.in
328 install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libopcodes
331 uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libopcodes
334 .PHONY: install_libopcodes uninstall_libopcodes
335 install_libopcodes: $(bfdlib_LTLIBRARIES)
336 $(mkinstalldirs) $(DESTDIR)$(bfdlibdir)
337 $(mkinstalldirs) $(DESTDIR)$(bfdincludedir)
338 @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
339 if test -f $$p; then \
340 echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \
341 $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \
344 $(INSTALL_DATA) $(INCDIR)/dis-asm.h $(DESTDIR)$(bfdincludedir)/dis-asm.h
346 uninstall_libopcodes:
347 list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
348 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \
350 rm -f $(DESTDIR)$(bfdincludedir)/dis-asm.h
353 stamp-ip2k stamp-m32r stamp-fr30 stamp-frv stamp-openrisc \
354 stamp-iq2000 stamp-xstormy16 \
355 libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2
359 CPUDIR = $(CGENDIR)/cpu
360 CGEN = `if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi`
364 $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
365 $(CGENDIR)/opcodes.scm $(CGENDIR)/opc-asmdis.scm \
366 $(CGENDIR)/opc-ibld.scm $(CGENDIR)/opc-itab.scm \
367 $(CGENDIR)/opc-opinst.scm \
368 cgen-asm.in cgen-dis.in cgen-ibld.in
370 CGEN_CPUS = fr30 frv ip2k m32r openrisc xstormy16
373 IP2K_DEPS = stamp-ip2k
374 M32R_DEPS = stamp-m32r
375 FR30_DEPS = stamp-fr30
377 OPENRISC_DEPS = stamp-openrisc
378 IQ2000_DEPS = stamp-iq2000
379 XSTORMY16_DEPS = stamp-xstormy16
391 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGEN) \
392 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
393 "$(options)" "$(extrafiles)"
394 touch stamp-${prefix}
397 # Maintainer utility rule to regenerate all cgen files.
399 for c in $(CGEN_CPUS) ; \
401 $(MAKE) stamp-$$c || exit 1 ; \
405 # For now, require developers to configure with --enable-cgen-maint.
406 $(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)
408 stamp-ip2k: $(CGENDEPS) $(CPUDIR)/ip2k.cpu $(CPUDIR)/ip2k.opc
409 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
410 archfile=$(CPUDIR)/ip2k.cpu opcfile=$(CPUDIR)/ip2k.opc extrafiles=
412 $(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)
414 stamp-m32r: $(CGENDEPS) $(CPUDIR)/m32r.cpu $(CPUDIR)/m32r.opc
415 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
416 archfile=$(CPUDIR)/m32r.cpu opcfile=$(CPUDIR)/m32r.opc extrafiles=opinst
418 $(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)
420 stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.cpu $(CPUDIR)/fr30.opc
421 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
422 archfile=$(CPUDIR)/fr30.cpu opcfile=$(CPUDIR)/fr30.opc extrafiles=
424 $(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)
426 # .cpu and .opc files for frv are kept in a different directory, but cgen has no switch to specify that location, so
427 # copy those file to the regular place.
428 stamp-frv: $(CGENDEPS) $(srcdir)/../cpu/frv.cpu $(srcdir)/../cpu/frv.opc
429 $(MAKE) run-cgen arch=frv prefix=frv options= \
430 archfile=$(srcdir)/../cpu/frv.cpu opcfile=$(srcdir)/../cpu/frv.opc extrafiles=
432 $(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)
434 stamp-openrisc: $(CGENDEPS) $(CPUDIR)/openrisc.cpu $(CPUDIR)/openrisc.opc
435 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= \
436 archfile=$(CPUDIR)/openrisc.cpu opcfile=$(CPUDIR)/openrisc.opc extrafiles=
438 $(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)
440 stamp-iq2000: $(CGENDEPS) $(CPUDIR)/iq2000.cpu $(CPUDIR)/iq2000.opc \
441 $(CPUDIR)/iq2000m.cpu $(CPUDIR)/iq10.cpu
442 $(MAKE) run-cgen arch=iq2000 prefix=iq2000 options= \
443 archfile=$(CPUDIR)/iq2000.cpu opcfile=$(CPUDIR)/iq2000.opc extrafiles=
445 $(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)
447 stamp-xstormy16: $(CGENDEPS) $(CPUDIR)/xstormy16.cpu $(CPUDIR)/xstormy16.opc
448 $(MAKE) run-cgen arch=xstormy16 prefix=xstormy16 options= \
449 archfile=$(CPUDIR)/xstormy16.cpu opcfile=$(CPUDIR)/xstormy16.opc extrafiles=
452 $(LINK) ia64-gen.o $(LIBIBERTY)
454 ia64-gen.o: ia64-gen.c ia64-opc.c ia64-opc-a.c ia64-opc-b.c ia64-opc-f.c \
455 ia64-opc-i.c ia64-opc-m.c ia64-opc-d.c ia64-opc.h
457 ia64-asmtab.c: @MAINT@ ia64-gen ia64-ic.tbl ia64-raw.tbl ia64-waw.tbl ia64-war.tbl
458 ./ia64-gen --srcdir $(srcdir) > $(srcdir)/ia64-asmtab.c
460 s390-mkopc: s390-mkopc.c
461 $(CC_FOR_BUILD) -o s390-mkopc $(srcdir)/s390-mkopc.c
463 s390-opc.tab: s390-mkopc s390-opc.txt
464 ./s390-mkopc < $(srcdir)/s390-opc.txt > s390-opc.tab
467 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $<
469 # This dependency stuff is copied from BFD.
471 DEP: dep.sed $(CFILES) $(HFILES) config.h
473 $(MAKE) MKDEP="$(MKDEP)" DEP1
474 sed -f dep.sed < DEP1 > DEPA
475 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
476 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
477 echo 'make DEP failed!'; exit 1; \
483 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
484 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
485 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
488 dep.sed: dep-in.sed config.status
489 sed <$(srcdir)/dep-in.sed >dep.sed \
490 -e 's!@BFD_H@!$(BFD_H)!' \
491 -e 's!@INCDIR@!$(INCDIR)!' \
492 -e 's!@BFDDIR@!$(BFDDIR)!' \
493 -e 's!@SRCDIR@!$(srcdir)!' \
494 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/opcodes$$,,`'!'
497 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
498 cat DEP >> tmp-Makefile
499 $(srcdir)/../move-if-change tmp-Makefile Makefile
502 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
503 cat DEP >> tmp-Makefile.in
504 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
507 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
508 cat DEP >> tmp-Makefile.am
509 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
511 .PHONY: dep dep-in dep-am
513 # What appears below is generated by a hacked mkdep using gcc -MM.
515 # DO NOT DELETE THIS LINE -- mkdep uses it.
516 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
517 a29k-dis.lo: a29k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
518 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/a29k.h
519 alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
520 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/alpha.h
521 alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
522 $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/symcat.h \
524 arc-dis.lo: arc-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
525 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \
526 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
527 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \
528 $(INCDIR)/elf/reloc-macros.h opintl.h arc-dis.h arc-ext.h
529 arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
530 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h
531 arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \
532 $(BFD_H) $(INCDIR)/symcat.h arc-ext.h $(INCDIR)/libiberty.h
533 arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
534 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h arm-opc.h \
535 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
536 opintl.h $(INCDIR)/safe-ctype.h $(BFDDIR)/elf-bfd.h \
537 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
538 $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/arm.h
539 avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
540 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \
541 $(INCDIR)/libiberty.h $(INCDIR)/opcode/avr.h
542 cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
543 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \
544 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h opintl.h
545 cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
546 $(INCDIR)/libiberty.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h
547 cgen-opc.lo: cgen-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
548 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \
549 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h
550 cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
551 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
552 $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h
553 cris-opc.lo: cris-opc.c $(INCDIR)/opcode/cris.h
554 crx-dis.lo: crx-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
555 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
556 $(INCDIR)/opcode/crx.h
557 crx-opc.lo: crx-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
558 $(INCDIR)/symcat.h $(INCDIR)/opcode/crx.h
559 d10v-dis.lo: d10v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
560 $(INCDIR)/opcode/d10v.h $(INCDIR)/dis-asm.h $(BFD_H) \
562 d10v-opc.lo: d10v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
563 $(INCDIR)/opcode/d10v.h
564 d30v-dis.lo: d30v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
565 $(INCDIR)/opcode/d30v.h $(INCDIR)/dis-asm.h $(BFD_H) \
566 $(INCDIR)/symcat.h opintl.h
567 d30v-opc.lo: d30v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
568 $(INCDIR)/opcode/d30v.h
569 dlx-dis.lo: dlx-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
570 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/dlx.h
571 dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \
572 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h
573 dis-init.lo: dis-init.c sysdep.h config.h $(INCDIR)/ansidecl.h \
574 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
575 disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \
576 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
577 fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
578 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
579 fr30-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
580 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
581 fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
582 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
583 fr30-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
585 fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
586 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
587 fr30-desc.h $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h
588 fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
589 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \
590 $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/safe-ctype.h
591 fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
592 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
593 fr30-opc.h $(INCDIR)/libiberty.h
594 frv-asm.lo: frv-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
595 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen.h \
596 frv-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
597 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
598 frv-desc.lo: frv-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
599 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen.h \
600 frv-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
602 frv-dis.lo: frv-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
603 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
604 frv-desc.h $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h
605 frv-ibld.lo: frv-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
606 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h frv-desc.h \
607 $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h $(INCDIR)/safe-ctype.h
608 frv-opc.lo: frv-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
609 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen.h \
610 frv-opc.h $(INCDIR)/libiberty.h $(INCDIR)/elf/frv.h \
611 $(INCDIR)/elf/reloc-macros.h
612 h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
613 $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \
614 $(INCDIR)/symcat.h opintl.h $(INCDIR)/libiberty.h
615 h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
616 h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
618 hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
619 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(BFDDIR)/libhppa.h \
620 $(INCDIR)/opcode/hppa.h
621 i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
622 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/i370.h
623 i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
624 $(INCDIR)/opcode/i370.h
625 i386-dis.lo: i386-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
626 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
628 i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
629 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h
630 i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
631 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
632 ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
633 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h
634 ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
635 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
636 ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
637 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
638 ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
639 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
640 ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
641 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
642 ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
643 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
644 ia64-opc-d.lo: ia64-opc-d.c
645 ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
646 sysdep.h config.h ia64-asmtab.h $(INCDIR)/opcode/ia64.h \
647 $(BFD_H) $(INCDIR)/symcat.h ia64-asmtab.c
648 ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
649 $(INCDIR)/safe-ctype.h sysdep.h config.h $(INCDIR)/getopt.h \
650 ia64-opc.h $(INCDIR)/opcode/ia64.h $(BFD_H) $(INCDIR)/symcat.h \
651 ia64-opc-a.c ia64-opc-i.c ia64-opc-m.c ia64-opc-b.c \
652 ia64-opc-f.c ia64-opc-x.c ia64-opc-d.c
653 ia64-asmtab.lo: ia64-asmtab.c
654 ip2k-asm.lo: ip2k-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
655 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen.h \
656 ip2k-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
657 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
658 ip2k-desc.lo: ip2k-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
659 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen.h \
660 ip2k-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
662 ip2k-dis.lo: ip2k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
663 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
664 ip2k-desc.h $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h
665 ip2k-ibld.lo: ip2k-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
666 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h \
667 $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h $(INCDIR)/safe-ctype.h
668 ip2k-opc.lo: ip2k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
669 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen.h \
670 ip2k-opc.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
671 iq2000-asm.lo: iq2000-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
672 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen.h \
673 iq2000-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
674 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
675 iq2000-desc.lo: iq2000-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
676 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen.h \
677 iq2000-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
679 iq2000-dis.lo: iq2000-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
680 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
681 iq2000-desc.h $(INCDIR)/opcode/cgen.h iq2000-opc.h \
683 iq2000-ibld.lo: iq2000-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
684 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h \
685 $(INCDIR)/opcode/cgen.h iq2000-opc.h opintl.h $(INCDIR)/safe-ctype.h
686 iq2000-opc.lo: iq2000-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
687 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen.h \
688 iq2000-opc.h $(INCDIR)/libiberty.h
689 m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
690 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
691 m32r-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
692 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
693 m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
694 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
695 m32r-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
697 m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
698 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
699 m32r-desc.h $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h
700 m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
701 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \
702 $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/safe-ctype.h
703 m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
704 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
705 m32r-opc.h $(INCDIR)/libiberty.h
706 m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \
707 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
709 m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \
710 $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \
712 m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \
713 $(INCDIR)/opcode/m68hc11.h
714 m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
715 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/floatformat.h \
716 $(INCDIR)/libiberty.h opintl.h $(INCDIR)/opcode/m68k.h
717 m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
718 $(INCDIR)/opcode/m68k.h
719 m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
720 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/m88k.h \
721 opintl.h $(INCDIR)/libiberty.h
722 maxq-dis.lo: maxq-dis.c sysdep.h config.h $(INCDIR)/opcode/maxq.h \
723 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
724 mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
725 mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
726 mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
727 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
728 $(INCDIR)/opcode/mips.h opintl.h $(BFDDIR)/elf-bfd.h \
729 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
730 $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
731 mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
732 $(INCDIR)/opcode/mips.h
733 mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
734 $(INCDIR)/opcode/mips.h
735 m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
736 $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \
737 $(INCDIR)/symcat.h opintl.h
738 m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
739 $(INCDIR)/opcode/mn10200.h
740 m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
741 $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \
742 $(INCDIR)/symcat.h opintl.h
743 m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
744 $(INCDIR)/opcode/mn10300.h
745 mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \
746 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
748 mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h
749 ns32k-dis.lo: ns32k-dis.c $(BFD_H) $(INCDIR)/ansidecl.h \
750 $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/dis-asm.h \
751 $(INCDIR)/opcode/ns32k.h opintl.h
752 openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
753 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen.h \
754 openrisc-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
755 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
756 openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \
757 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \
758 $(INCDIR)/opcode/cgen.h openrisc-opc.h opintl.h $(INCDIR)/libiberty.h \
759 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
760 openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
761 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
762 openrisc-desc.h $(INCDIR)/opcode/cgen.h openrisc-opc.h \
764 openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \
765 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
766 openrisc-desc.h $(INCDIR)/opcode/cgen.h openrisc-opc.h \
767 opintl.h $(INCDIR)/safe-ctype.h
768 openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
769 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen.h \
770 openrisc-opc.h $(INCDIR)/libiberty.h
771 or32-dis.lo: or32-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
772 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/or32.h \
773 $(INCDIR)/safe-ctype.h
774 or32-opc.lo: or32-opc.c $(INCDIR)/safe-ctype.h $(INCDIR)/ansidecl.h \
775 $(INCDIR)/opcode/or32.h
776 pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
777 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/pdp11.h
778 pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h
779 pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
780 $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \
782 pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
783 $(INCDIR)/opcode/pj.h
784 ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
785 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/ppc.h
786 ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
787 $(INCDIR)/opcode/ppc.h opintl.h
788 s390-mkopc.lo: s390-mkopc.c
789 s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \
791 s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \
792 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
793 $(INCDIR)/opcode/s390.h
794 sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
795 sh-opc.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h
796 sh64-dis.lo: sh64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
797 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
798 sh64-opc.h $(INCDIR)/libiberty.h $(BFDDIR)/elf-bfd.h \
799 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
800 $(INCDIR)/bfdlink.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
801 $(BFDDIR)/elf32-sh64.h
802 sh64-opc.lo: sh64-opc.c sh64-opc.h
803 sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
804 $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h $(BFD_H) \
805 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h opintl.h
806 sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
807 $(INCDIR)/opcode/sparc.h
808 tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
809 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic30.h
810 tic4x-dis.lo: tic4x-dis.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
811 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic4x.h
812 tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
813 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h \
814 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h
815 tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
816 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h
817 tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
818 $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \
820 tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
821 $(INCDIR)/opcode/tic80.h
822 v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
823 $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \
824 $(INCDIR)/symcat.h opintl.h
825 v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
826 $(INCDIR)/opcode/v850.h opintl.h
827 vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
828 $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \
830 w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
831 w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
832 xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \
833 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
834 $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h $(INCDIR)/xregex.h \
835 $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
836 xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \
837 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
838 $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h $(INCDIR)/libiberty.h \
839 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
840 xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \
841 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
842 $(INCDIR)/libiberty.h xstormy16-desc.h $(INCDIR)/opcode/cgen.h \
843 xstormy16-opc.h opintl.h
844 xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \
845 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
846 xstormy16-desc.h $(INCDIR)/opcode/cgen.h xstormy16-opc.h \
847 opintl.h $(INCDIR)/safe-ctype.h
848 xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \
849 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
850 $(INCDIR)/opcode/cgen.h xstormy16-opc.h $(INCDIR)/libiberty.h
851 xtensa-dis.lo: xtensa-dis.c $(INCDIR)/xtensa-isa.h \
852 $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h sysdep.h \
853 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
854 z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
855 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h z8k-opc.h
856 z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h \
857 $(INCDIR)/libiberty.h
858 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY