1 ## Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = 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.
278 OFILES = @BFD_MACHINES@
280 INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(INCDIR) -I$(BFDDIR) @HDEFINES@ -I$(srcdir)/../intl -I../intl
282 disassemble.lo: disassemble.c $(INCDIR)/dis-asm.h
283 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $(srcdir)/disassemble.c
285 libopcodes_la_SOURCES = dis-buf.c disassemble.c dis-init.c
286 # It's desirable to list ../bfd/libbfd.la in DEPENDENCIES and LIBADD.
287 # Unfortunately this causes libtool to add -L$(libdir), referring to the
288 # planned install directory of libbfd. This can cause us to pick up an
289 # old version of libbfd, or to pick up libbfd for the wrong architecture
291 libopcodes_la_DEPENDENCIES = $(OFILES)
292 libopcodes_la_LIBADD = $(OFILES) @WIN32LIBADD@
293 libopcodes_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@
295 # libtool will build .libs/libopcodes.a. We create libopcodes.a in
296 # the build directory so that we don't have to convert all the
297 # programs that use libopcodes.a simultaneously. This is a hack which
298 # should be removed if everything else starts using libtool. FIXME.
300 noinst_LIBRARIES = libopcodes.a
302 stamp-lib: libopcodes.la
303 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
304 if [ -f $$libtooldir/libopcodes.a ]; then \
305 cp $$libtooldir/libopcodes.a libopcodes.tmp; \
306 $(RANLIB) libopcodes.tmp; \
307 $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
311 libopcodes.a: stamp-lib ; @true
313 POTFILES = $(HFILES) $(CFILES)
314 po/POTFILES.in: @MAINT@ Makefile
315 for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
316 && mv tmp $(srcdir)/po/POTFILES.in
318 # We should reconfigure whenever bfd/configure.in changes, because
319 # that's where the version number comes from.
320 config.status: $(srcdir)/configure $(srcdir)/../bfd/configure.in
321 $(SHELL) ./config.status --recheck
323 install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libopcodes
326 uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libopcodes
329 .PHONY: install_libopcodes uninstall_libopcodes
330 install_libopcodes: $(bfdlib_LTLIBRARIES)
331 $(mkinstalldirs) $(DESTDIR)$(bfdlibdir)
332 $(mkinstalldirs) $(DESTDIR)$(bfdincludedir)
333 @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
334 if test -f $$p; then \
335 echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \
336 $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \
339 $(INSTALL_DATA) $(INCDIR)/dis-asm.h $(DESTDIR)$(bfdincludedir)/dis-asm.h
341 uninstall_libopcodes:
342 list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
343 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \
345 rm -f $(DESTDIR)$(bfdincludedir)/dis-asm.h
348 stamp-ip2k stamp-m32r stamp-fr30 stamp-frv stamp-openrisc \
349 stamp-iq2000 stamp-xstormy16 \
350 libopcodes.a stamp-lib dep.sed DEP DEPA DEP1 DEP2
354 CPUDIR = $(CGENDIR)/cpu
355 CGEN = `if test -f ../guile/libguile/guile ; then echo ../guile/libguile/guile; else echo guile ; fi`
359 $(CGENDIR)/desc.scm $(CGENDIR)/desc-cpu.scm \
360 $(CGENDIR)/opcodes.scm $(CGENDIR)/opc-asmdis.scm \
361 $(CGENDIR)/opc-ibld.scm $(CGENDIR)/opc-itab.scm \
362 $(CGENDIR)/opc-opinst.scm \
363 cgen-asm.in cgen-dis.in cgen-ibld.in
365 CGEN_CPUS = fr30 frv ip2k m32r openrisc xstormy16
368 IP2K_DEPS = stamp-ip2k
369 M32R_DEPS = stamp-m32r
370 FR30_DEPS = stamp-fr30
372 OPENRISC_DEPS = stamp-openrisc
373 IQ2000_DEPS = stamp-iq2000
374 XSTORMY16_DEPS = stamp-xstormy16
386 $(SHELL) $(srcdir)/cgen.sh opcodes $(srcdir) $(CGEN) \
387 $(CGENDIR) "$(CGENFLAGS)" $(arch) $(prefix) $(archfile) $(opcfile) \
388 "$(options)" "$(extrafiles)"
389 touch stamp-${prefix}
392 # Maintainer utility rule to regenerate all cgen files.
394 for c in $(CGEN_CPUS) ; \
396 $(MAKE) stamp-$$c || exit 1 ; \
400 # For now, require developers to configure with --enable-cgen-maint.
401 $(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)
403 stamp-ip2k: $(CGENDEPS) $(CPUDIR)/ip2k.cpu $(CPUDIR)/ip2k.opc
404 $(MAKE) run-cgen arch=ip2k prefix=ip2k options= \
405 archfile=$(CPUDIR)/ip2k.cpu opcfile=$(CPUDIR)/ip2k.opc extrafiles=
407 $(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)
409 stamp-m32r: $(CGENDEPS) $(CPUDIR)/m32r.cpu $(CPUDIR)/m32r.opc
410 $(MAKE) run-cgen arch=m32r prefix=m32r options=opinst \
411 archfile=$(CPUDIR)/m32r.cpu opcfile=$(CPUDIR)/m32r.opc extrafiles=opinst
413 $(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)
415 stamp-fr30: $(CGENDEPS) $(CPUDIR)/fr30.cpu $(CPUDIR)/fr30.opc
416 $(MAKE) run-cgen arch=fr30 prefix=fr30 options= \
417 archfile=$(CPUDIR)/fr30.cpu opcfile=$(CPUDIR)/fr30.opc extrafiles=
419 $(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)
421 # .cpu and .opc files for frv are kept in a different directory, but cgen has no switch to specify that location, so
422 # copy those file to the regular place.
423 stamp-frv: $(CGENDEPS) $(srcdir)/../cpu/frv.cpu $(srcdir)/../cpu/frv.opc
424 $(MAKE) run-cgen arch=frv prefix=frv options= \
425 archfile=$(srcdir)/../cpu/frv.cpu opcfile=$(srcdir)/../cpu/frv.opc extrafiles=
427 $(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)
429 stamp-openrisc: $(CGENDEPS) $(CPUDIR)/openrisc.cpu $(CPUDIR)/openrisc.opc
430 $(MAKE) run-cgen arch=openrisc prefix=openrisc options= \
431 archfile=$(CPUDIR)/openrisc.cpu opcfile=$(CPUDIR)/openrisc.opc extrafiles=
433 $(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)
435 stamp-iq2000: $(CGENDEPS) $(CPUDIR)/iq2000.cpu $(CPUDIR)/iq2000.opc \
436 $(CPUDIR)/iq2000m.cpu $(CPUDIR)/iq10.cpu
437 $(MAKE) run-cgen arch=iq2000 prefix=iq2000 options= \
438 archfile=$(CPUDIR)/iq2000.cpu opcfile=$(CPUDIR)/iq2000.opc extrafiles=
440 $(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)
442 stamp-xstormy16: $(CGENDEPS) $(CPUDIR)/xstormy16.cpu $(CPUDIR)/xstormy16.opc
443 $(MAKE) run-cgen arch=xstormy16 prefix=xstormy16 options= \
444 archfile=$(CPUDIR)/xstormy16.cpu opcfile=$(CPUDIR)/xstormy16.opc extrafiles=
447 $(LINK) ia64-gen.o $(LIBIBERTY)
449 ia64-gen.o: ia64-gen.c ia64-opc.c ia64-opc-a.c ia64-opc-b.c ia64-opc-f.c \
450 ia64-opc-i.c ia64-opc-m.c ia64-opc-d.c ia64-opc.h
452 ia64-asmtab.c: @MAINT@ ia64-gen ia64-ic.tbl ia64-raw.tbl ia64-waw.tbl ia64-war.tbl
453 ./ia64-gen --srcdir $(srcdir) > $(srcdir)/ia64-asmtab.c
455 s390-mkopc: s390-mkopc.c
456 $(CC_FOR_BUILD) -o s390-mkopc $(srcdir)/s390-mkopc.c
458 s390-opc.tab: s390-mkopc s390-opc.txt
459 ./s390-mkopc < $(srcdir)/s390-opc.txt > s390-opc.tab
462 $(LIBTOOL) --mode=compile $(COMPILE) -c @archdefs@ $<
464 Makefile: $(BFDDIR)/configure.in
466 # This dependency stuff is copied from BFD.
468 DEP: dep.sed $(CFILES) $(HFILES) config.h
470 $(MAKE) MKDEP="$(MKDEP)" DEP1
471 sed -f dep.sed < DEP1 > DEPA
472 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
473 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
474 echo 'make DEP failed!'; exit 1; \
480 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
481 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
482 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
485 dep.sed: dep-in.sed config.status
486 sed <$(srcdir)/dep-in.sed >dep.sed \
487 -e 's!@BFD_H@!$(BFD_H)!' \
488 -e 's!@INCDIR@!$(INCDIR)!' \
489 -e 's!@BFDDIR@!$(BFDDIR)!' \
490 -e 's!@SRCDIR@!$(srcdir)!' \
491 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/opcodes$$,,`'!'
494 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
495 cat DEP >> tmp-Makefile
496 $(srcdir)/../move-if-change tmp-Makefile Makefile
499 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
500 cat DEP >> tmp-Makefile.in
501 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
504 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
505 cat DEP >> tmp-Makefile.am
506 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
508 .PHONY: dep dep-in dep-am
510 # What appears below is generated by a hacked mkdep using gcc -MM.
512 # DO NOT DELETE THIS LINE -- mkdep uses it.
513 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
514 a29k-dis.lo: a29k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
515 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/a29k.h
516 alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
517 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/alpha.h
518 alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
519 $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/symcat.h \
521 arc-dis.lo: arc-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
522 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \
523 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
524 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \
525 $(INCDIR)/elf/reloc-macros.h opintl.h arc-dis.h arc-ext.h
526 arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
527 $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h
528 arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \
529 $(BFD_H) $(INCDIR)/symcat.h arc-ext.h $(INCDIR)/libiberty.h
530 arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
531 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h arm-opc.h \
532 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
533 opintl.h $(INCDIR)/safe-ctype.h $(BFDDIR)/elf-bfd.h \
534 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
535 $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h
536 avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
537 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \
538 $(INCDIR)/libiberty.h $(INCDIR)/opcode/avr.h
539 cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
540 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \
541 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h opintl.h
542 cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
543 $(INCDIR)/libiberty.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h
544 cgen-opc.lo: cgen-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
545 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \
546 $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h
547 cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
548 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
549 $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h
550 cris-opc.lo: cris-opc.c $(INCDIR)/opcode/cris.h
551 d10v-dis.lo: d10v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
552 $(INCDIR)/opcode/d10v.h $(INCDIR)/dis-asm.h $(BFD_H) \
554 d10v-opc.lo: d10v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
555 $(INCDIR)/opcode/d10v.h
556 d30v-dis.lo: d30v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
557 $(INCDIR)/opcode/d30v.h $(INCDIR)/dis-asm.h $(BFD_H) \
558 $(INCDIR)/symcat.h opintl.h
559 d30v-opc.lo: d30v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
560 $(INCDIR)/opcode/d30v.h
561 dlx-dis.lo: dlx-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
562 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/dlx.h
563 dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \
564 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h
565 dis-init.lo: dis-init.c sysdep.h config.h $(INCDIR)/ansidecl.h \
566 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
567 disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \
568 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
569 fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
570 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
571 fr30-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
572 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
573 fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
574 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
575 fr30-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
577 fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
578 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
579 fr30-desc.h $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h
580 fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
581 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \
582 $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/safe-ctype.h
583 fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
584 $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen.h \
585 fr30-opc.h $(INCDIR)/libiberty.h
586 frv-asm.lo: frv-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
587 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen.h \
588 frv-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
589 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
590 frv-desc.lo: frv-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
591 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen.h \
592 frv-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
594 frv-dis.lo: frv-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
595 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
596 frv-desc.h $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h
597 frv-ibld.lo: frv-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
598 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h frv-desc.h \
599 $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h $(INCDIR)/safe-ctype.h
600 frv-opc.lo: frv-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
601 $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen.h \
602 frv-opc.h $(INCDIR)/libiberty.h $(INCDIR)/elf/frv.h \
603 $(INCDIR)/elf/reloc-macros.h
604 h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
605 $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \
606 $(INCDIR)/symcat.h opintl.h $(INCDIR)/libiberty.h
607 h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
608 h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
610 hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
611 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(BFDDIR)/libhppa.h \
612 $(INCDIR)/opcode/hppa.h
613 i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
614 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/i370.h
615 i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
616 $(INCDIR)/opcode/i370.h
617 i386-dis.lo: i386-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
618 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
620 i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
621 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h
622 i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
623 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
624 ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
625 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h
626 ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
627 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
628 ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
629 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
630 ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
631 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
632 ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
633 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
634 ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h \
635 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
636 ia64-opc-d.lo: ia64-opc-d.c
637 ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
638 sysdep.h config.h ia64-asmtab.h $(INCDIR)/opcode/ia64.h \
639 $(BFD_H) $(INCDIR)/symcat.h ia64-asmtab.c
640 ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
641 $(INCDIR)/safe-ctype.h sysdep.h config.h $(INCDIR)/getopt.h \
642 ia64-opc.h $(INCDIR)/opcode/ia64.h $(BFD_H) $(INCDIR)/symcat.h \
643 ia64-opc-a.c ia64-opc-i.c ia64-opc-m.c ia64-opc-b.c \
644 ia64-opc-f.c ia64-opc-x.c ia64-opc-d.c
645 ia64-asmtab.lo: ia64-asmtab.c
646 ip2k-asm.lo: ip2k-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
647 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen.h \
648 ip2k-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
649 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
650 ip2k-desc.lo: ip2k-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
651 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen.h \
652 ip2k-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
654 ip2k-dis.lo: ip2k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
655 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
656 ip2k-desc.h $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h
657 ip2k-ibld.lo: ip2k-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
658 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h \
659 $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h $(INCDIR)/safe-ctype.h
660 ip2k-opc.lo: ip2k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
661 $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen.h \
662 ip2k-opc.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
663 iq2000-asm.lo: iq2000-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
664 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen.h \
665 iq2000-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
666 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
667 iq2000-desc.lo: iq2000-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
668 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen.h \
669 iq2000-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
671 iq2000-dis.lo: iq2000-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
672 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
673 iq2000-desc.h $(INCDIR)/opcode/cgen.h iq2000-opc.h \
675 iq2000-ibld.lo: iq2000-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
676 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h \
677 $(INCDIR)/opcode/cgen.h iq2000-opc.h opintl.h $(INCDIR)/safe-ctype.h
678 iq2000-opc.lo: iq2000-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
679 $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen.h \
680 iq2000-opc.h $(INCDIR)/libiberty.h
681 m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
682 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
683 m32r-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
684 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
685 m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
686 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
687 m32r-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \
689 m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
690 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
691 m32r-desc.h $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h
692 m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \
693 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \
694 $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/safe-ctype.h
695 m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
696 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
697 m32r-opc.h $(INCDIR)/libiberty.h
698 m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \
699 $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen.h \
701 m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \
702 $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \
704 m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \
705 $(INCDIR)/opcode/m68hc11.h
706 m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
707 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/floatformat.h \
708 $(INCDIR)/libiberty.h opintl.h $(INCDIR)/opcode/m68k.h
709 m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
710 $(INCDIR)/opcode/m68k.h
711 m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
712 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/m88k.h \
713 opintl.h $(INCDIR)/libiberty.h
714 mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
715 mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
716 mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
717 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
718 $(INCDIR)/opcode/mips.h opintl.h $(BFDDIR)/elf-bfd.h \
719 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
720 $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h
721 mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
722 $(INCDIR)/opcode/mips.h
723 mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
724 $(INCDIR)/opcode/mips.h
725 m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
726 $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \
727 $(INCDIR)/symcat.h opintl.h
728 m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
729 $(INCDIR)/opcode/mn10200.h
730 m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
731 $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \
732 $(INCDIR)/symcat.h opintl.h
733 m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
734 $(INCDIR)/opcode/mn10300.h
735 mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \
736 $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
738 mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h
739 ns32k-dis.lo: ns32k-dis.c $(BFD_H) $(INCDIR)/ansidecl.h \
740 $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/dis-asm.h \
741 $(INCDIR)/opcode/ns32k.h opintl.h
742 openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \
743 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen.h \
744 openrisc-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \
745 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
746 openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \
747 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \
748 $(INCDIR)/opcode/cgen.h openrisc-opc.h opintl.h $(INCDIR)/libiberty.h \
749 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
750 openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
751 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
752 openrisc-desc.h $(INCDIR)/opcode/cgen.h openrisc-opc.h \
754 openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \
755 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
756 openrisc-desc.h $(INCDIR)/opcode/cgen.h openrisc-opc.h \
757 opintl.h $(INCDIR)/safe-ctype.h
758 openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
759 $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen.h \
760 openrisc-opc.h $(INCDIR)/libiberty.h
761 or32-dis.lo: or32-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
762 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/or32.h \
763 $(INCDIR)/safe-ctype.h
764 or32-opc.lo: or32-opc.c $(INCDIR)/safe-ctype.h $(INCDIR)/ansidecl.h \
765 $(INCDIR)/opcode/or32.h
766 pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
767 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/pdp11.h
768 pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h
769 pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
770 $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \
772 pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
773 $(INCDIR)/opcode/pj.h
774 ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
775 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/ppc.h
776 ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
777 $(INCDIR)/opcode/ppc.h opintl.h
778 s390-mkopc.lo: s390-mkopc.c
779 s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \
781 s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \
782 config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
783 $(INCDIR)/opcode/s390.h
784 sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
785 sh-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
786 sh64-dis.lo: sh64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \
787 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \
788 sh64-opc.h $(INCDIR)/libiberty.h $(BFDDIR)/elf-bfd.h \
789 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
790 $(INCDIR)/bfdlink.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
791 $(BFDDIR)/elf32-sh64.h
792 sh64-opc.lo: sh64-opc.c sh64-opc.h
793 sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
794 $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h $(BFD_H) \
795 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h opintl.h
796 sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
797 $(INCDIR)/opcode/sparc.h
798 tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
799 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic30.h
800 tic4x-dis.lo: tic4x-dis.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
801 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic4x.h
802 tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
803 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h \
804 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h
805 tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
806 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h
807 tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
808 $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \
810 tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
811 $(INCDIR)/opcode/tic80.h
812 v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
813 $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \
814 $(INCDIR)/symcat.h opintl.h
815 v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \
816 $(INCDIR)/opcode/v850.h opintl.h
817 vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
818 $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \
820 w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
821 w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h
822 xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \
823 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
824 $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h $(INCDIR)/xregex.h \
825 $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
826 xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \
827 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
828 $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h $(INCDIR)/libiberty.h \
829 $(INCDIR)/xregex.h $(INCDIR)/xregex2.h
830 xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \
831 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
832 $(INCDIR)/libiberty.h xstormy16-desc.h $(INCDIR)/opcode/cgen.h \
833 xstormy16-opc.h opintl.h
834 xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \
835 $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \
836 xstormy16-desc.h $(INCDIR)/opcode/cgen.h xstormy16-opc.h \
837 opintl.h $(INCDIR)/safe-ctype.h
838 xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \
839 $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \
840 $(INCDIR)/opcode/cgen.h xstormy16-opc.h $(INCDIR)/libiberty.h
841 xtensa-dis.lo: xtensa-dis.c $(INCDIR)/xtensa-isa.h \
842 $(INCDIR)/ansidecl.h sysdep.h config.h $(INCDIR)/dis-asm.h \
843 $(BFD_H) $(INCDIR)/symcat.h
844 z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \
845 $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h z8k-opc.h
846 z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h \
847 $(INCDIR)/libiberty.h
848 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY