Cleanups after the update to Autoconf 2.64, Automake 1.11.
[deliverable/binutils-gdb.git] / gas / Makefile.am
index e12012a01e747bf466d2206c48f81b492fa91de1..a7f547cf438a495f988cac2d960ef707133e81f0 100644 (file)
@@ -72,6 +72,7 @@ CPU_TYPES = \
        maxq \
        mcore \
        mep \
+       microblaze \
        mips \
        mmix \
        mn10200 \
@@ -109,7 +110,8 @@ OBJ_FORMATS = \
        coff \
        ecoff \
        elf \
-       evax
+       evax \
+       macho
 
 # This is an sh case which sets valid according to whether the CPU
 # type in the shell variable c and the OS type in the shell variable o
@@ -142,6 +144,10 @@ CPU_OBJ_VALID = \
          case $$c in \
          alpha) valid=yes ;; \
          esac ;; \
+       macho) \
+         case $$c in \
+         i386) valid=yes ;; \
+         esac ;; \
        vms) \
          case $$c in \
          vax) valid=yes ;; \
@@ -268,6 +274,7 @@ TARGET_CPU_CFILES = \
        config/tc-maxq.c \
        config/tc-mcore.c \
        config/tc-mep.c \
+       config/tc-microblaze.c \
        config/tc-mips.c \
        config/tc-mmix.c \
        config/tc-mn10200.c \
@@ -329,6 +336,7 @@ TARGET_CPU_HFILES = \
        config/tc-maxq.h \
        config/tc-mcore.h \
        config/tc-mep.h \
+       config/tc-microblaze.h \
        config/tc-mips.h \
        config/tc-mmix.h \
        config/tc-mn10200.h \
@@ -368,6 +376,7 @@ OBJ_FORMAT_CFILES = \
        config/obj-elf.c \
        config/obj-evax.c \
        config/obj-fdpicelf.c \
+       config/obj-macho.c \
        config/obj-som.c
 
 OBJ_FORMAT_HFILES = \
@@ -377,6 +386,7 @@ OBJ_FORMAT_HFILES = \
        config/obj-elf.h \
        config/obj-evax.h \
        config/obj-fdpicelf.h \
+       config/obj-macho.h \
        config/obj-som.h
 
 # Emulation header files in config
@@ -594,6 +604,8 @@ obj-evax.o : $(srcdir)/config/obj-evax.c
        $(COMPILE) -c $(srcdir)/config/obj-evax.c
 obj-fdpicelf.o : $(srcdir)/config/obj-fdpicelf.c
        $(COMPILE) -c $(srcdir)/config/obj-fdpicelf.c
+obj-macho.o : $(srcdir)/config/obj-macho.c
+       $(COMPILE) -c $(srcdir)/config/obj-macho.c
 obj-multi.o : $(srcdir)/config/obj-multi.c
        $(COMPILE) -c $(srcdir)/config/obj-multi.c
 obj-som.o : $(srcdir)/config/obj-som.c
@@ -716,64 +728,6 @@ MOSTLYCLEANFILES = $(STAGESTUFF) core \
 
 CLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR
 
-.PHONY: install-pdf install-pdf-am install-pdf-recursive
-
-install-pdf:   install-pdf-recursive
-
-install-pdf-recursive:
-       @failcom='exit 1'; \
-       for f in x $$MAKEFLAGS; do \
-         case $$f in \
-           *=* | --[!k]*);; \
-           *k*) failcom='fail=yes';; \
-         esac; \
-       done; \
-       dot_seen=no; \
-       target=`echo $@ | sed s/-recursive//`; \
-       list='$(SUBDIRS)'; for subdir in $$list; do \
-         echo "Making $$target in $$subdir"; \
-         if test "$$subdir" = "."; then \
-           dot_seen=yes; \
-           local_target="$$target-am"; \
-         else \
-           local_target="$$target"; \
-         fi; \
-         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-         || eval $$failcom; \
-       done; \
-       if test "$$dot_seen" = "no"; then \
-         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
-       fi; test -z "$$fail"
-
-.PHONY: install-html install-html-am install-html-recursive
-
-install-html:  install-html-recursive
-
-install-html-recursive:
-       @failcom='exit 1'; \
-       for f in x $$MAKEFLAGS; do \
-         case $$f in \
-           *=* | --[!k]*);; \
-           *k*) failcom='fail=yes';; \
-         esac; \
-       done; \
-       dot_seen=no; \
-       target=`echo $@ | sed s/-recursive//`; \
-       list='$(SUBDIRS)'; for subdir in $$list; do \
-         echo "Making $$target in $$subdir"; \
-         if test "$$subdir" = "."; then \
-           dot_seen=yes; \
-           local_target="$$target-am"; \
-         else \
-           local_target="$$target"; \
-         fi; \
-         (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-         || eval $$failcom; \
-       done; \
-       if test "$$dot_seen" = "no"; then \
-         $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
-       fi; test -z "$$fail"
-
 .PHONY: install-exec-local install-data-local
 .PHONY: install-exec-bindir install-exec-tooldir
 
@@ -922,7 +876,8 @@ DEP1: $(CFILES) $(MULTI_CFILES)
        for f in $?; do \
          $(MKDEP) $(DEP_FLAGS) $$f > DEP; \
          sed -n -e '1s/: .*/: \\/p' -e q < DEP >> DEP2; \
-         sed -e '1s/.*://' -f ../dep.sed < DEP | LC_ALL=C sort | uniq | \
+         sed -e '1s/.*://' -f ../dep.sed < DEP | \
+           LC_ALL=C sort | LC_ALL=C uniq | \
            sed -e 's/^[AB]/  /' -e '$$s/ \\$$//' >> DEP2; \
        done
        mv -f DEPDIR/DEP2 $@
@@ -952,7 +907,7 @@ DEPTC: $(TARGET_CPU_CFILES)
              echo "DEPTC_$${c}_$${o} = \\" >> ../DEPTCA; \
              $(MKDEP) $(DEP_FLAGS) dumtc.c | \
                sed -e '1s/dumtc.o: //' -f ../dep.sed | \
-               LC_ALL=C sort | uniq | \
+               LC_ALL=C sort | LC_ALL=C uniq | \
                sed -e '/^A/d' -e 's/^B/  /' -e '$$s/ \\$$//' >> ../DEPTCA; \
              rm -f dumtc.c; \
            else true; fi; \
@@ -993,7 +948,7 @@ DEPOBJ: $(OBJ_FORMAT_CFILES)
              echo "DEPOBJ_$${c}_$${o} = \\" >> ../DEPOBJA; \
              $(MKDEP) $(DEP_FLAGS) dumobj.c | \
                sed -e "s/dumobj.o: //" -f ../dep.sed | \
-               LC_ALL=C sort | uniq | \
+               LC_ALL=C sort | LC_ALL=C uniq | \
                sed -e '/^A/d' -e 's/^B/  /' -e '$$s/ \\$$//' >> ../DEPOBJA; \
              rm -f dumobj.c; \
            else true; fi; \
@@ -1031,7 +986,7 @@ DEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
              echo "DEP_$${c}_$${o} = \\" >> ../DEP2A; \
              $(MKDEP) $(DEP_FLAGS) dummy.c | \
                sed -e "s/dummy.o: //" -f ../dep.sed | \
-               LC_ALL=C sort | uniq | \
+               LC_ALL=C sort | LC_ALL=C uniq | \
                sed -e '/^A/d' -e 's/^B/  /' -e '$$s/ \\$$//' >> ../DEP2A; \
            else true; fi; \
          done; \
@@ -1084,7 +1039,7 @@ DEPTC_alpha_ecoff = \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/coff/ecoff.h \
   $(INCDIR)/coff/sym.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/alpha.h \
   $(INCDIR)/safe-ctype.h \
@@ -1102,9 +1057,9 @@ DEPTC_alpha_elf = \
   $(INCDIR)/bfdlink.h \
   $(INCDIR)/coff/ecoff.h \
   $(INCDIR)/coff/sym.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/alpha.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -1122,7 +1077,7 @@ DEPTC_alpha_elf = \
 DEPTC_alpha_evax = \
   $(BFDDIR)/vms.h \
   $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/alpha.h \
   $(INCDIR)/safe-ctype.h \
@@ -1174,6 +1129,8 @@ DEPTC_arm_coff = \
   $(INCDIR)/opcode/arm.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-arm.h \
   dwarf2dbg.h \
   subsegs.h
@@ -1181,9 +1138,9 @@ DEPTC_arm_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/arm.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -1371,6 +1328,8 @@ DEPTC_h8300_coff = \
   $(INCDIR)/opcode/h8300.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-h8300.h \
   dwarf2dbg.h \
   subsegs.h
@@ -1396,8 +1355,8 @@ DEPTC_hppa_elf = \
   $(BFDDIR)/libhppa.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/hppa.h \
   $(INCDIR)/elf/internal.h \
@@ -1431,7 +1390,7 @@ DEPTC_i386_aout = \
   $(BFDDIR)/libaout.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/reloc-macros.h \
   $(INCDIR)/elf/x86-64.h \
   $(INCDIR)/obstack.h \
@@ -1452,7 +1411,7 @@ DEPTC_i386_coff = \
   $(INCDIR)/coff/external.h \
   $(INCDIR)/coff/i386.h \
   $(INCDIR)/coff/internal.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/reloc-macros.h \
   $(INCDIR)/elf/x86-64.h \
   $(INCDIR)/obstack.h \
@@ -1461,6 +1420,8 @@ DEPTC_i386_coff = \
   $(srcdir)/../opcodes/i386-init.h \
   $(srcdir)/../opcodes/i386-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-i386-intel.c \
   $(srcdir)/config/tc-i386.h \
   dw2gencfi.h \
@@ -1470,8 +1431,8 @@ DEPTC_i386_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -1487,6 +1448,22 @@ DEPTC_i386_elf = \
   dw2gencfi.h \
   dwarf2dbg.h \
   subsegs.h
+DEPTC_i386_macho = \
+  $(INCDIR)/alloca-conf.h \
+  $(INCDIR)/dwarf2.h \
+  $(INCDIR)/elf/reloc-macros.h \
+  $(INCDIR)/elf/x86-64.h \
+  $(INCDIR)/obstack.h \
+  $(INCDIR)/opcode/i386.h \
+  $(INCDIR)/safe-ctype.h \
+  $(srcdir)/../opcodes/i386-init.h \
+  $(srcdir)/../opcodes/i386-opc.h \
+  $(srcdir)/config/obj-macho.h \
+  $(srcdir)/config/tc-i386-intel.c \
+  $(srcdir)/config/tc-i386.h \
+  dw2gencfi.h \
+  dwarf2dbg.h \
+  subsegs.h
 DEPTC_i860_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
@@ -1513,6 +1490,8 @@ DEPTC_i960_coff = \
   $(INCDIR)/opcode/i960.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-i960.h
 DEPTC_i960_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -1650,7 +1629,7 @@ DEPTC_m68k_aout = \
   $(BFDDIR)/libaout.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/m68k.h \
   $(INCDIR)/safe-ctype.h \
@@ -1667,12 +1646,14 @@ DEPTC_m68k_coff = \
   $(INCDIR)/coff/external.h \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/m68k.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/m68k.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/m68k-parse.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-m68k.h \
   dw2gencfi.h \
   dwarf2dbg.h \
@@ -1681,8 +1662,8 @@ DEPTC_m68k_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/m68k.h \
@@ -1707,6 +1688,8 @@ DEPTC_maxq_coff = \
   $(INCDIR)/opcode/maxq.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-maxq.h \
   dwarf2dbg.h \
   subsegs.h
@@ -1721,6 +1704,8 @@ DEPTC_mcore_coff = \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/../opcodes/mcore-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-mcore.h \
   subsegs.h
 DEPTC_mcore_elf = \
@@ -1762,6 +1747,19 @@ DEPTC_mep_elf = \
   cgen.h \
   dwarf2dbg.h \
   subsegs.h
+DEPTC_microblaze_elf = \
+  $(srcdir)/config/obj-elf.h \
+  $(BFDDIR)/elf-bfd.h \
+  $(INCDIR)/elf/common.h \
+  $(INCDIR)/elf/internal.h \
+  $(INCDIR)/elf/external.h \
+  $(INCDIR)/bfdlink.h \
+  $(srcdir)/config/tc-microblaze.h \
+  $(INCDIR)/obstack.h \
+  $(srcdir)/../opcodes/microblaze-opc.h \
+  $(INCDIR)/elf/reloc-macros.h \
+  emul.h \
+  subsegs.h
 DEPTC_mips_coff = \
   $(BFDDIR)/elf-bfd.h \
   $(BFDDIR)/libcoff.h \
@@ -1772,8 +1770,8 @@ DEPTC_mips_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/mipspe.h \
   $(INCDIR)/coff/sym.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/mips.h \
@@ -1782,6 +1780,8 @@ DEPTC_mips_coff = \
   $(INCDIR)/opcode/mips.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mips.h \
   dw2gencfi.h \
@@ -1795,8 +1795,8 @@ DEPTC_mips_ecoff = \
   $(INCDIR)/bfdlink.h \
   $(INCDIR)/coff/ecoff.h \
   $(INCDIR)/coff/sym.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/mips.h \
@@ -1818,8 +1818,8 @@ DEPTC_mips_elf = \
   $(INCDIR)/bfdlink.h \
   $(INCDIR)/coff/ecoff.h \
   $(INCDIR)/coff/sym.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/mips.h \
@@ -1949,6 +1949,8 @@ DEPTC_or32_coff = \
   $(INCDIR)/opcode/or32.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-or32.h
 DEPTC_or32_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -2002,11 +2004,13 @@ DEPTC_ppc_coff = \
   $(INCDIR)/bfdlink.h \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/rs6000.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/ppc.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-ppc.h \
   dw2gencfi.h \
   subsegs.h
@@ -2014,8 +2018,8 @@ DEPTC_ppc_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/ppc.h \
@@ -2032,8 +2036,8 @@ DEPTC_s390_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -2072,11 +2076,13 @@ DEPTC_sh_coff = \
   $(INCDIR)/coff/external.h \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/sh.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/../opcodes/sh-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-sh.h \
   dw2gencfi.h \
   dwarf2dbg.h \
@@ -2086,8 +2092,8 @@ DEPTC_sh_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -2106,8 +2112,8 @@ DEPTC_sh64_elf = \
   $(BFDDIR)/elf32-sh64.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -2128,7 +2134,7 @@ DEPTC_sparc_aout = \
   $(BFDDIR)/libaout.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/sparc.h \
   $(INCDIR)/safe-ctype.h \
@@ -2143,11 +2149,13 @@ DEPTC_sparc_coff = \
   $(INCDIR)/coff/external.h \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/sparc.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/sparc.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-sparc.h \
   dw2gencfi.h \
   subsegs.h
@@ -2155,8 +2163,8 @@ DEPTC_sparc_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
   $(INCDIR)/bfdlink.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/dwarf2.h \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/elf/reloc-macros.h \
@@ -2202,6 +2210,8 @@ DEPTC_tic30_coff = \
   $(INCDIR)/opcode/tic30.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic30.h
 DEPTC_tic4x_coff = \
   $(BFDDIR)/libcoff.h \
@@ -2214,6 +2224,8 @@ DEPTC_tic4x_coff = \
   $(INCDIR)/opcode/tic4x.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic4x.h \
   subsegs.h
 DEPTC_tic54x_coff = \
@@ -2227,6 +2239,8 @@ DEPTC_tic54x_coff = \
   $(INCDIR)/opcode/tic54x.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic54x.h \
   macro.h \
   sb.h \
@@ -2342,6 +2356,8 @@ DEPTC_z80_coff = \
   $(INCDIR)/obstack.h \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-z80.h \
   subsegs.h
 DEPTC_z8k_coff = \
@@ -2354,6 +2370,8 @@ DEPTC_z8k_coff = \
   $(INCDIR)/safe-ctype.h \
   $(srcdir)/../opcodes/z8k-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-z8k.h
 DEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
   $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h \
@@ -2433,6 +2451,8 @@ DEPOBJ_arm_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-arm.h \
   subsegs.h
 DEPOBJ_arm_elf = \
@@ -2617,6 +2637,8 @@ DEPOBJ_h8300_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-h8300.h \
   subsegs.h
 DEPOBJ_h8300_elf = \
@@ -2691,6 +2713,8 @@ DEPOBJ_i386_coff = \
   $(INCDIR)/opcode/i386.h \
   $(srcdir)/../opcodes/i386-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-i386.h \
   subsegs.h
 DEPOBJ_i386_elf = \
@@ -2712,6 +2736,13 @@ DEPOBJ_i386_elf = \
   dwarf2dbg.h \
   struc-symbol.h \
   subsegs.h
+DEPOBJ_i386_macho = \
+  $(BFDDIR)/mach-o.h \
+  $(INCDIR)/alloca-conf.h \
+  $(INCDIR)/opcode/i386.h \
+  $(srcdir)/../opcodes/i386-opc.h \
+  $(srcdir)/config/obj-macho.h \
+  $(srcdir)/config/tc-i386.h
 DEPOBJ_i860_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(INCDIR)/alloca-conf.h \
@@ -2735,6 +2766,8 @@ DEPOBJ_i960_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-i960.h \
   subsegs.h
 DEPOBJ_i960_elf = \
@@ -2862,6 +2895,8 @@ DEPOBJ_m68k_coff = \
   $(INCDIR)/coff/m68k.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-m68k.h \
   subsegs.h
 DEPOBJ_m68k_elf = \
@@ -2888,6 +2923,8 @@ DEPOBJ_maxq_coff = \
   $(INCDIR)/coff/maxq.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-maxq.h \
   subsegs.h
 DEPOBJ_mcore_coff = \
@@ -2899,6 +2936,8 @@ DEPOBJ_mcore_coff = \
   $(INCDIR)/coff/mcore.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-mcore.h \
   subsegs.h
 DEPOBJ_mcore_elf = \
@@ -2942,6 +2981,8 @@ DEPOBJ_mips_coff = \
   $(INCDIR)/coff/mipspe.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-mips.h \
   subsegs.h
 DEPOBJ_mips_ecoff = \
@@ -3081,6 +3122,8 @@ DEPOBJ_or32_coff = \
   $(INCDIR)/coff/or32.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-or32.h \
   subsegs.h
 DEPOBJ_or32_elf = \
@@ -3145,6 +3188,8 @@ DEPOBJ_ppc_coff = \
   $(INCDIR)/obstack.h \
   $(INCDIR)/opcode/ppc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-ppc.h \
   subsegs.h
 DEPOBJ_ppc_elf = \
@@ -3204,6 +3249,8 @@ DEPOBJ_sh_coff = \
   $(INCDIR)/coff/sh.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-sh.h \
   subsegs.h
 DEPOBJ_sh_elf = \
@@ -3257,6 +3304,8 @@ DEPOBJ_sparc_coff = \
   $(INCDIR)/coff/sparc.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-sparc.h \
   subsegs.h
 DEPOBJ_sparc_elf = \
@@ -3308,6 +3357,8 @@ DEPOBJ_tic30_coff = \
   $(INCDIR)/coff/tic30.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic30.h \
   subsegs.h
 DEPOBJ_tic4x_coff = \
@@ -3319,6 +3370,8 @@ DEPOBJ_tic4x_coff = \
   $(INCDIR)/coff/tic4x.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic4x.h \
   subsegs.h
 DEPOBJ_tic54x_coff = \
@@ -3330,6 +3383,8 @@ DEPOBJ_tic54x_coff = \
   $(INCDIR)/coff/tic54x.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic54x.h \
   subsegs.h
 DEPOBJ_v850_elf = \
@@ -3428,6 +3483,8 @@ DEPOBJ_z80_coff = \
   $(INCDIR)/coff/z80.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-z80.h \
   subsegs.h
 DEPOBJ_z8k_coff = \
@@ -3439,6 +3496,8 @@ DEPOBJ_z8k_coff = \
   $(INCDIR)/coff/z8k.h \
   $(INCDIR)/obstack.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-z8k.h \
   subsegs.h
 DEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
@@ -3468,6 +3527,8 @@ DEP_alpha_evax = \
   $(INCDIR)/bfdlink.h \
   $(INCDIR)/coff/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-evax.h \
   $(srcdir)/config/tc-alpha.h
 DEP_arc_elf = \
@@ -3480,6 +3541,8 @@ DEP_arc_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-arc.h \
   dwarf2dbg.h
@@ -3495,6 +3558,8 @@ DEP_arm_coff = \
   $(INCDIR)/coff/external.h \
   $(INCDIR)/coff/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-arm.h
 DEP_arm_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -3514,6 +3579,8 @@ DEP_avr_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-avr.h \
   dwarf2dbg.h
@@ -3527,6 +3594,8 @@ DEP_bfin_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-bfin.h \
   dwarf2dbg.h
@@ -3540,6 +3609,8 @@ DEP_cr16_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-cr16.h \
   dwarf2dbg.h
@@ -3558,6 +3629,8 @@ DEP_cris_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-cris.h \
   dwarf2dbg.h
@@ -3571,6 +3644,8 @@ DEP_crx_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-crx.h \
   dwarf2dbg.h
@@ -3600,6 +3675,8 @@ DEP_dlx_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-dlx.h \
   dwarf2dbg.h
@@ -3613,6 +3690,8 @@ DEP_fr30_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-fr30.h \
   dwarf2dbg.h
@@ -3631,6 +3710,8 @@ DEP_h8300_coff = \
   $(INCDIR)/coff/h8300.h \
   $(INCDIR)/coff/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-h8300.h
 DEP_h8300_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -3644,6 +3725,8 @@ DEP_h8300_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-h8300.h \
   dwarf2dbg.h
@@ -3669,6 +3752,8 @@ DEP_i370_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-i370.h \
   dwarf2dbg.h
@@ -3688,6 +3773,8 @@ DEP_i386_coff = \
   $(INCDIR)/opcode/i386.h \
   $(srcdir)/../opcodes/i386-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-i386.h
 DEP_i386_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -3703,9 +3790,16 @@ DEP_i386_elf = \
   $(INCDIR)/opcode/i386.h \
   $(srcdir)/../opcodes/i386-opc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-i386.h \
   dwarf2dbg.h
+DEP_i386_macho = \
+  $(INCDIR)/opcode/i386.h \
+  $(srcdir)/../opcodes/i386-opc.h \
+  $(srcdir)/config/obj-macho.h \
+  $(srcdir)/config/tc-i386.h
 DEP_i860_elf = \
   $(BFDDIR)/elf-bfd.h \
   $(BFDDIR)/libcoff.h \
@@ -3716,6 +3810,8 @@ DEP_i860_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-i860.h \
   dwarf2dbg.h
@@ -3725,6 +3821,8 @@ DEP_i960_coff = \
   $(INCDIR)/coff/i960.h \
   $(INCDIR)/coff/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-i960.h
 DEP_i960_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -3737,6 +3835,8 @@ DEP_i960_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-i960.h \
   dwarf2dbg.h
@@ -3761,6 +3861,8 @@ DEP_ip2k_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-ip2k.h \
   dwarf2dbg.h
@@ -3774,6 +3876,8 @@ DEP_lm32_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-lm32.h \
   dwarf2dbg.h
@@ -3787,6 +3891,8 @@ DEP_m32c_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-m32c.h \
   dwarf2dbg.h
@@ -3800,6 +3906,8 @@ DEP_m32r_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-m32r.h \
   dwarf2dbg.h
@@ -3815,6 +3923,8 @@ DEP_m68hc11_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-m68hc11.h \
   dwarf2dbg.h
@@ -3830,6 +3940,8 @@ DEP_m68k_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/m68k.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-m68k.h
 DEP_m68k_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -3846,6 +3958,8 @@ DEP_maxq_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/maxq.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-maxq.h
 DEP_mcore_coff = \
   $(BFDDIR)/libcoff.h \
@@ -3854,6 +3968,8 @@ DEP_mcore_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/mcore.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-mcore.h
 DEP_mcore_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -3867,6 +3983,8 @@ DEP_mcore_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mcore.h \
   dwarf2dbg.h
@@ -3880,9 +3998,19 @@ DEP_mep_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mep.h \
   dwarf2dbg.h
+DEP_microblaze_elf = \
+  $(srcdir)/config/obj-elf.h \
+  $(BFDDIR)/elf-bfd.h \
+  $(INCDIR)/elf/common.h \
+  $(INCDIR)/elf/internal.h \
+  $(INCDIR)/elf/external.h \
+  $(INCDIR)/bfdlink.h \
+  $(srcdir)/config/tc-microblaze.h
 DEP_mips_coff = \
   $(BFDDIR)/libcoff.h \
   $(INCDIR)/bfdlink.h \
@@ -3890,6 +4018,8 @@ DEP_mips_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/mipspe.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-mips.h
 DEP_mips_ecoff = \
   $(INCDIR)/coff/ecoff.h \
@@ -3915,6 +4045,8 @@ DEP_mmix_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mmix.h \
   dwarf2dbg.h
@@ -3928,6 +4060,8 @@ DEP_mn10200_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mn10200.h \
   dwarf2dbg.h
@@ -3941,6 +4075,8 @@ DEP_mn10300_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mn10300.h \
   dwarf2dbg.h
@@ -3954,6 +4090,8 @@ DEP_msp430_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-msp430.h \
   dwarf2dbg.h
@@ -3967,6 +4105,8 @@ DEP_mt_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-mt.h \
   dwarf2dbg.h
@@ -3985,6 +4125,8 @@ DEP_openrisc_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-openrisc.h \
   dwarf2dbg.h
@@ -3994,6 +4136,8 @@ DEP_or32_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/or32.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-or32.h
 DEP_or32_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -4006,6 +4150,8 @@ DEP_or32_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-or32.h \
   dwarf2dbg.h
@@ -4024,6 +4170,8 @@ DEP_pdp11_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-pdp11.h \
   dwarf2dbg.h
@@ -4037,6 +4185,8 @@ DEP_pj_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-pj.h \
   dwarf2dbg.h
@@ -4047,6 +4197,8 @@ DEP_ppc_coff = \
   $(INCDIR)/coff/rs6000.h \
   $(INCDIR)/opcode/ppc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-ppc.h
 DEP_ppc_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -4060,6 +4212,8 @@ DEP_ppc_elf = \
   $(INCDIR)/elf/internal.h \
   $(INCDIR)/opcode/ppc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-ppc.h \
   dwarf2dbg.h
@@ -4073,6 +4227,8 @@ DEP_s390_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-s390.h \
   dwarf2dbg.h
@@ -4086,6 +4242,8 @@ DEP_score_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-score.h \
   dwarf2dbg.h
@@ -4096,6 +4254,8 @@ DEP_sh_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/sh.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-sh.h
 DEP_sh_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -4129,6 +4289,8 @@ DEP_sparc_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/sparc.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-sparc.h
 DEP_sparc_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -4142,6 +4304,8 @@ DEP_sparc_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-sparc.h \
   dwarf2dbg.h
@@ -4157,6 +4321,8 @@ DEP_spu_elf = \
   $(INCDIR)/opcode/spu-insns.h \
   $(INCDIR)/opcode/spu.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-spu.h \
   dwarf2dbg.h
@@ -4172,6 +4338,8 @@ DEP_tic30_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/tic30.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic30.h
 DEP_tic4x_coff = \
   $(BFDDIR)/libcoff.h \
@@ -4180,6 +4348,8 @@ DEP_tic4x_coff = \
   $(INCDIR)/coff/ti.h \
   $(INCDIR)/coff/tic4x.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic4x.h
 DEP_tic54x_coff = \
   $(BFDDIR)/libcoff.h \
@@ -4188,6 +4358,8 @@ DEP_tic54x_coff = \
   $(INCDIR)/coff/ti.h \
   $(INCDIR)/coff/tic54x.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-tic54x.h
 DEP_v850_elf = \
   $(BFDDIR)/elf-bfd.h \
@@ -4201,6 +4373,8 @@ DEP_v850_elf = \
   $(INCDIR)/elf/reloc-macros.h \
   $(INCDIR)/elf/v850.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-v850.h \
   dwarf2dbg.h
@@ -4219,6 +4393,8 @@ DEP_vax_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-vax.h \
   dwarf2dbg.h
@@ -4232,6 +4408,8 @@ DEP_xc16x_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-xc16x.h \
   dwarf2dbg.h
@@ -4245,6 +4423,8 @@ DEP_xstormy16_elf = \
   $(INCDIR)/elf/external.h \
   $(INCDIR)/elf/internal.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/obj-elf.h \
   $(srcdir)/config/tc-xstormy16.h \
   dwarf2dbg.h
@@ -4265,6 +4445,8 @@ DEP_z80_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/z80.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-z80.h
 DEP_z8k_coff = \
   $(BFDDIR)/libcoff.h \
@@ -4273,6 +4455,8 @@ DEP_z8k_coff = \
   $(INCDIR)/coff/internal.h \
   $(INCDIR)/coff/z8k.h \
   $(srcdir)/config/obj-coff.h \
+  $(srcdir)/config/obj-coff-seh.h \
+  $(srcdir)/config/obj-coff-seh.c \
   $(srcdir)/config/tc-z8k.h
 DEP_hppa_som = $(BFDDIR)/som.h
 DEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) $(DEP_i386_elf)
@@ -4286,7 +4470,7 @@ app.o: \
 as.o: \
   as.c \
   $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   ../bfd/bfdver.h \
   dw2gencfi.h \
@@ -4311,7 +4495,7 @@ depend.o: \
 dwarf2dbg.o: \
   dwarf2dbg.c \
   $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/filenames.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/safe-ctype.h \
@@ -4320,7 +4504,7 @@ dwarf2dbg.o: \
 dw2gencfi.o: \
   dw2gencfi.c \
   $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   dw2gencfi.h \
   subsegs.h
@@ -4331,7 +4515,7 @@ ecoff.o: \
 ehopt.o: \
   ehopt.c \
   $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   struc-symbol.h \
   subsegs.h
@@ -4396,7 +4580,7 @@ output-file.o: \
 read.o: \
   read.c \
   $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/elf/dwarf2.h \
+  $(INCDIR)/dwarf2.h \
   $(INCDIR)/obstack.h \
   $(INCDIR)/safe-ctype.h \
   dw2gencfi.h \
This page took 0.043968 seconds and 4 git commands to generate.