gdb/continuations: turn continuation functions into inferior methods
[deliverable/binutils-gdb.git] / gdb / Makefile.in
index b2a1281701d65cddc6ce0987fd837790b87335e0..ba0cabb0216ab5f3faa6c6b4e0e9241c9da11e26 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1989-2018 Free Software Foundation, Inc.
+# Copyright (C) 1989-2021 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
@@ -118,9 +118,13 @@ include $(srcdir)/silent-rules.mk
 # GNU make is used.  The overrides implement dependency tracking.
 COMPILE.pre = $(CXX) -x c++ $(CXX_DIALECT)
 COMPILE.post = -c -o $@
-COMPILE = $(ECHO_CXX) $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
 POSTCOMPILE = @true
 
+# CXXFLAGS is at the very end on purpose, so that user-supplied flags can
+# override internal flags.
+COMPILE = $(ECHO_CXX) $(COMPILE.pre) $(INTERNAL_CFLAGS) $(CXXFLAGS) \
+       $(COMPILE.post)
+
 YACC = @YACC@
 
 # This is used to rebuild ada-lex.c from ada-lex.l.  If the program is
@@ -153,6 +157,10 @@ INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
 # Where is the "-liberty" library?  Typically in ../libiberty.
 LIBIBERTY = ../libiberty/libiberty.a
 
+# Where is the CTF library?  Typically in ../libctf.
+LIBCTF = @LIBCTF@
+CTF_DEPS = @CTF_DEPS@
+
 # Where is the BFD library?  Typically in ../bfd.
 BFD_DIR = ../bfd
 BFD = $(BFD_DIR)/libbfd.a
@@ -171,8 +179,8 @@ LIBDECNUMBER = $(LIBDECNUMBER_DIR)/libdecnumber.a
 LIBDECNUMBER_SRC = $(srcdir)/$(LIBDECNUMBER_DIR)
 LIBDECNUMBER_CFLAGS = -I$(LIBDECNUMBER_DIR) -I$(LIBDECNUMBER_SRC)
 
-# Where is the READLINE library?  Typically in ../readline.
-READLINE_DIR = ../readline
+# Where is the READLINE library?  Typically in ../readline/readline.
+READLINE_DIR = ../readline/readline
 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
 READLINE = @READLINE@
 READLINE_DEPS = @READLINE_DEPS@
@@ -184,21 +192,38 @@ LIBEXPAT = @LIBEXPAT@
 # Where is lzma?  This will be empty if lzma was not available.
 LIBLZMA = @LIBLZMA@
 
-# Where is libbabeltrace? This will be empty if lbabeltrace was not
+# Where is libbabeltrace? This will be empty if libbabeltrace was not
 # available.
 LIBBABELTRACE = @LIBBABELTRACE@
 
+# Where is libxxhash? This will be empty if libxxhash was not
+# available.
+LIBXXHASH = @LIBXXHASH@
+
 # Where is libipt?  This will be empty if libipt was not available.
 LIBIPT = @LIBIPT@
 
+# Where is libgmp?
+LIBGMP = @LIBGMP@
+
 # Where is libmpfr?  This will be empty if libmpfr was not available.
 LIBMPFR = @LIBMPFR@
 
+# GNU source highlight library.
+SRCHIGH_LIBS = @SRCHIGH_LIBS@
+SRCHIGH_CFLAGS = @SRCHIGH_CFLAGS@
+
 WARN_CFLAGS = @WARN_CFLAGS@
 WERROR_CFLAGS = @WERROR_CFLAGS@
 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
 
+PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
+PTHREAD_LIBS = @PTHREAD_LIBS@
+
+DEBUGINFOD_CFLAGS = @DEBUGINFOD_CFLAGS@
+DEBUGINFOD_LIBS = @DEBUGINFOD_LIBS@
+
 RDYNAMIC = @RDYNAMIC@
 
 # Where is the INTL library?  Typically in ../intl.
@@ -220,13 +245,12 @@ CODESIGN_CERT = @CODESIGN_CERT@
 GDBFLAGS =
 
 # Helper code from gnulib.
-GNULIB_BUILDDIR = build-gnulib
-LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
-INCGNU = -I$(srcdir)/gnulib/import -I$(GNULIB_BUILDDIR)/import
+GNULIB_BUILDDIR = ../gnulib
+include $(GNULIB_BUILDDIR)/Makefile.gnulib.inc
 
-# Generated headers in the gnulib directory.  These must be listed
-# so that they are generated before other files are compiled.
-GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
+SUPPORT = ../gdbsupport
+LIBSUPPORT = $(SUPPORT)/libgdbsupport.a
+INCSUPPORT = -I$(srcdir)/.. -I..
 
 #
 # CLI sub directory definitons
@@ -237,6 +261,7 @@ SUBDIR_CLI_SRCS = \
        cli/cli-dump.c \
        cli/cli-interp.c \
        cli/cli-logging.c \
+       cli/cli-option.c \
        cli/cli-script.c \
        cli/cli-setshow.c \
        cli/cli-style.c \
@@ -285,12 +310,12 @@ SUBDIR_TUI_SRCS = \
        tui/tui-interp.c \
        tui/tui-io.c \
        tui/tui-layout.c \
+       tui/tui-location.c \
        tui/tui-out.c \
        tui/tui-regs.c \
        tui/tui-source.c \
        tui/tui-stack.c \
        tui/tui-win.c \
-       tui/tui-windata.c \
        tui/tui-wingeneral.c \
        tui/tui-winsource.c
 
@@ -386,11 +411,13 @@ SUBDIR_PYTHON_SRCS = \
        python/py-record.c \
        python/py-record-btrace.c \
        python/py-record-full.c \
+       python/py-registers.c \
        python/py-signalevent.c \
        python/py-stopevent.c \
        python/py-symbol.c \
        python/py-symtab.c \
        python/py-threadevent.c \
+       python/py-tui.c \
        python/py-type.c \
        python/py-unwind.c \
        python/py-utils.c \
@@ -405,14 +432,23 @@ SUBDIR_PYTHON_DEPS =
 SUBDIR_PYTHON_LDFLAGS =
 SUBDIR_PYTHON_CFLAGS =
 
-SUBDIR_UNITTESTS_SRCS = \
+SELFTESTS_SRCS = \
+       disasm-selftests.c \
+       gdbarch-selftests.c \
+       selftest-arch.c \
        unittests/array-view-selftests.c \
+       unittests/child-path-selftests.c \
        unittests/cli-utils-selftests.c \
+       unittests/command-def-selftests.c \
        unittests/common-utils-selftests.c \
        unittests/copy_bitwise-selftests.c \
+       unittests/enum-flags-selftests.c \
        unittests/environ-selftests.c \
+       unittests/filtered_iterator-selftests.c \
        unittests/format_pieces-selftests.c \
        unittests/function-view-selftests.c \
+       unittests/gdb_tilde_expand-selftests.c \
+       unittests/gmp-utils-selftests.c \
        unittests/lookup_name_info-selftests.c \
        unittests/memory-map-selftests.c \
        unittests/memrange-selftests.c \
@@ -421,19 +457,23 @@ SUBDIR_UNITTESTS_SRCS = \
        unittests/optional-selftests.c \
        unittests/parse-connection-spec-selftests.c \
        unittests/ptid-selftests.c \
+       unittests/main-thread-selftests.c \
        unittests/mkdir-recursive-selftests.c \
        unittests/rsp-low-selftests.c \
        unittests/scoped_fd-selftests.c \
        unittests/scoped_mmap-selftests.c \
        unittests/scoped_restore-selftests.c \
+       unittests/search-memory-selftests.c \
        unittests/string_view-selftests.c \
        unittests/style-selftests.c \
        unittests/tracepoint-selftests.c \
+       unittests/tui-selftests.c \
        unittests/unpack-selftests.c \
        unittests/utils-selftests.c \
+       unittests/vec-utils-selftests.c \
        unittests/xml-utils-selftests.c
 
-SUBDIR_UNITTESTS_OBS = $(patsubst %.c,%.o,$(SUBDIR_UNITTESTS_SRCS))
+SELFTESTS_OBS = $(patsubst %.c,%.o,$(SELFTESTS_SRCS))
 
 SUBDIR_TARGET_SRCS = target/waitstatus.c
 SUBDIR_TARGET_OBS = $(patsubst %.c,%.o,$(SUBDIR_TARGET_SRCS))
@@ -450,8 +490,12 @@ OPCODES = $(OPCODES_DIR)/libopcodes.a
 # Where are the other opcode tables which only have header file
 # versions?
 OP_INCLUDE = $(INCLUDE_DIR)/opcode
+# See TOP_CFLAGS as well.
 OPCODES_CFLAGS = -I$(OP_INCLUDE)
 
+# Allow includes like "opcodes/mumble.h".
+TOP_CFLAGS = -I$(top_srcdir)/..
+
 # The simulator is usually nonexistent; targets that include one
 # should set this to list all the .o or .a files to be linked in.
 SIM = @SIM@
@@ -527,7 +571,7 @@ CONFIG_INSTALL = @CONFIG_INSTALL@
 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
 HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
 
-CONFIG_SRC_SUBDIR = arch cli mi common compile tui unittests guile python \
+CONFIG_SRC_SUBDIR = arch cli dwarf2 mi compile tui unittests guile python \
        target nat
 CONFIG_DEP_SUBDIR = $(addsuffix /$(DEPDIR),$(CONFIG_SRC_SUBDIR))
 
@@ -539,7 +583,7 @@ CONFIG_DEP_SUBDIR = $(addsuffix /$(DEPDIR),$(CONFIG_SRC_SUBDIR))
 # your system doesn't have fcntl.h in /usr/include (which is where it
 # should be according to Posix).
 DEFS = @DEFS@
-GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/common -I$(srcdir)/config \
+GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config \
        -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
 
 # MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory.
@@ -559,14 +603,17 @@ CPPFLAGS = @CPPFLAGS@
 # are sometimes a little generic, we think that the risk of collision
 # with other header files is high.  If that happens, we try to mitigate
 # a bit the consequences by putting the Python includes last in the list.
-INTERNAL_CPPFLAGS = $(CPPFLAGS) @GUILE_CPPFLAGS@ @PYTHON_CPPFLAGS@
+INTERNAL_CPPFLAGS = $(CPPFLAGS) @GUILE_CPPFLAGS@ @PYTHON_CPPFLAGS@ \
+       @LARGEFILE_CPPFLAGS@
 
 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
 INTERNAL_CFLAGS_BASE = \
-       $(CXXFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
+       $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
        $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) $(ZLIBINC) \
        $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
-       $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
+       $(INTL_CFLAGS) $(INCGNU) $(INCSUPPORT) $(ENABLE_CFLAGS) \
+       $(INTERNAL_CPPFLAGS) $(SRCHIGH_CFLAGS) $(TOP_CFLAGS) $(PTHREAD_CFLAGS) \
+       $(DEBUGINFOD_CFLAGS)
 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
 
@@ -580,18 +627,22 @@ LDFLAGS = @LDFLAGS@
 # PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
 INTERNAL_LDFLAGS = \
        $(CXXFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) \
-       $(LDFLAGS) $(CONFIG_LDFLAGS)
+       $(LDFLAGS) $(CONFIG_LDFLAGS) $(PTHREAD_CFLAGS)
 
 # Libraries and corresponding dependencies for compiling gdb.
 # XM_CLIBS, defined in *config files, have host-dependent libs.
 # LIBIBERTY appears twice on purpose.
-CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(ZLIB) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
+CLIBS = $(SIM) $(READLINE) $(OPCODES) $(LIBCTF) $(BFD) $(ZLIB) \
+        $(LIBSUPPORT) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
        $(XM_CLIBS) $(GDBTKLIBS) \
        @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \
        $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \
-       $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV) $(LIBMPFR)
-CDEPS = $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
-       $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
+       $(WIN32LIBS) $(LIBGNU) $(LIBGNU_EXTRA_LIBS) $(LIBICONV) \
+       $(LIBMPFR) $(LIBGMP) $(SRCHIGH_LIBS) $(LIBXXHASH) $(PTHREAD_LIBS) \
+       $(DEBUGINFOD_LIBS)
+CDEPS = $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) $(CTF_DEPS) \
+       $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU) \
+       $(LIBSUPPORT)
 
 DIST = gdb
 
@@ -633,20 +684,22 @@ ALL_64_TARGET_OBS = \
        alpha-bsd-tdep.o \
        alpha-linux-tdep.o \
        alpha-mdebug-tdep.o \
-       alpha-nbsd-tdep.o \
+       alpha-netbsd-tdep.o \
        alpha-obsd-tdep.o \
        alpha-tdep.o \
        amd64-darwin-tdep.o \
        amd64-dicos-tdep.o \
        amd64-fbsd-tdep.o \
        amd64-linux-tdep.o \
-       amd64-nbsd-tdep.o \
+       amd64-netbsd-tdep.o \
        amd64-obsd-tdep.o \
+       amd64-ravenscar-thread.o \
        amd64-sol2-tdep.o \
        amd64-tdep.o \
        amd64-windows-tdep.o \
        arch/aarch64.o \
        arch/aarch64-insn.o \
+       arch/aarch64-mte-linux.o \
        arch/amd64.o \
        ia64-linux-tdep.o \
        ia64-tdep.o \
@@ -654,14 +707,18 @@ ALL_64_TARGET_OBS = \
        mips64-obsd-tdep.o \
        sparc64-fbsd-tdep.o \
        sparc64-linux-tdep.o \
-       sparc64-nbsd-tdep.o \
+       sparc64-netbsd-tdep.o \
        sparc64-obsd-tdep.o \
        sparc64-sol2-tdep.o \
        sparc64-tdep.o
 
 # All other target-dependent objects files (used with --enable-targets=all).
 ALL_TARGET_OBS = \
+       aarch32-tdep.o \
+       arc-linux-tdep.o \
        arc-tdep.o \
+       arch/aarch32.o \
+       arch/arc.o \
        arch/arm.o \
        arch/arm-get-next-pcs.o \
        arch/arm-linux.o \
@@ -671,15 +728,15 @@ ALL_TARGET_OBS = \
        arm-bsd-tdep.o \
        arm-fbsd-tdep.o \
        arm-linux-tdep.o \
-       arm-nbsd-tdep.o \
+       arm-netbsd-tdep.o \
        arm-obsd-tdep.o \
        arm-pikeos-tdep.o \
-       arm-symbian-tdep.o \
        arm-tdep.o \
        arm-wince-tdep.o \
        avr-tdep.o \
        bfin-linux-tdep.o \
        bfin-tdep.o \
+       bpf-tdep.o \
        bsd-uthread.o \
        cris-linux-tdep.o \
        cris-tdep.o \
@@ -694,22 +751,22 @@ ALL_TARGET_OBS = \
        h8300-tdep.o \
        hppa-bsd-tdep.o \
        hppa-linux-tdep.o \
-       hppa-nbsd-tdep.o \
+       hppa-netbsd-tdep.o \
        hppa-obsd-tdep.o \
        hppa-tdep.o \
        i386-bsd-tdep.o \
-       i386-cygwin-tdep.o \
        i386-darwin-tdep.o \
        i386-dicos-tdep.o \
        i386-fbsd-tdep.o \
        i386-gnu-tdep.o \
        i386-go32-tdep.o \
        i386-linux-tdep.o \
-       i386-nbsd-tdep.o \
+       i386-netbsd-tdep.o \
        i386-nto-tdep.o \
        i386-obsd-tdep.o \
        i386-sol2-tdep.o \
        i386-tdep.o \
+       i386-windows-tdep.o \
        i387-tdep.o \
        iq2000-tdep.o \
        linux-record.o \
@@ -727,14 +784,14 @@ ALL_TARGET_OBS = \
        microblaze-tdep.o \
        mips-fbsd-tdep.o \
        mips-linux-tdep.o \
-       mips-nbsd-tdep.o \
+       mips-netbsd-tdep.o \
        mips-sde-tdep.o \
        mips-tdep.o \
        mn10300-linux-tdep.o \
        mn10300-tdep.o \
        moxie-tdep.o \
        msp430-tdep.o \
-       nbsd-tdep.o \
+       netbsd-tdep.o \
        nds32-tdep.o \
        nios2-linux-tdep.o \
        nios2-tdep.o \
@@ -744,7 +801,7 @@ ALL_TARGET_OBS = \
        or1k-tdep.o \
        ppc-fbsd-tdep.o \
        ppc-linux-tdep.o \
-       ppc-nbsd-tdep.o \
+       ppc-netbsd-tdep.o \
        ppc-obsd-tdep.o \
        ppc-ravenscar-thread.o \
        ppc-sysv-tdep.o \
@@ -752,6 +809,8 @@ ALL_TARGET_OBS = \
        ravenscar-thread.o \
        riscv-fbsd-tdep.o \
        riscv-linux-tdep.o \
+       riscv-none-tdep.o \
+       riscv-ravenscar-thread.o \
        riscv-tdep.o \
        rl78-tdep.o \
        rs6000-aix-tdep.o \
@@ -763,30 +822,27 @@ ALL_TARGET_OBS = \
        s390-tdep.o \
        score-tdep.o \
        sh-linux-tdep.o \
-       sh-nbsd-tdep.o \
+       sh-netbsd-tdep.o \
        sh-tdep.o \
        sol2-tdep.o \
        solib-aix.o \
        solib-darwin.o \
        solib-dsbt.o \
        solib-frv.o \
-       solib-spu.o \
        solib-svr4.o \
        sparc-linux-tdep.o \
-       sparc-nbsd-tdep.o \
+       sparc-netbsd-tdep.o \
        sparc-obsd-tdep.o \
        sparc-ravenscar-thread.o \
        sparc-sol2-tdep.o \
        sparc-tdep.o \
-       spu-multiarch.o \
-       spu-tdep.o \
        symfile-mem.o \
        tic6x-linux-tdep.o \
        tic6x-tdep.o \
        tilegx-linux-tdep.o \
        tilegx-tdep.o \
        v850-tdep.o \
-       vax-nbsd-tdep.o \
+       vax-netbsd-tdep.o \
        vax-tdep.o \
        windows-tdep.o \
        x86-tdep.o \
@@ -805,6 +861,7 @@ LOADLIBES = @LOADLIBES@
 MH_CFLAGS = @MH_CFLAGS@
 XM_CLIBS = @XM_CLIBS@
 NAT_GENERATED_FILES = @NAT_GENERATED_FILES@
+NM_H = @NM_H@
 HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
 
 # Native-target dependent makefile fragment comes in here.
@@ -917,8 +974,10 @@ COMMON_SFILES = \
        ada-varobj.c \
        addrmap.c \
        agent.c \
+       alloc.c \
        annotate.c \
        arch-utils.c \
+       async-event.c \
        auto-load.c \
        auxv.c \
        ax-gdb.c \
@@ -943,38 +1002,8 @@ COMMON_SFILES = \
        cli-out.c \
        coff-pe-read.c \
        coffread.c \
-       common/agent.c \
-       common/btrace-common.c \
-       common/buffer.c \
-       common/cleanups.c \
-       common/common-debug.c \
-       common/common-exceptions.c \
-       common/common-regcache.c \
-       common/common-utils.c \
-       common/errors.c \
-       common/environ.c \
-       common/fileio.c \
-       common/filestuff.c \
-       common/format.c \
-       common/job-control.c \
-       common/gdb_tilde_expand.c \
-       common/gdb_vecs.c \
-       common/netstuff.c \
-       common/new-op.c \
-       common/pathstuff.c \
-       common/print-utils.c \
-       common/ptid.c \
-       common/rsp-low.c \
-       common/run-time-clock.c \
-       common/scoped_mmap.c \
-       common/signals.c \
-       common/signals-state-save-restore.c \
-       common/tdesc.c \
-       common/vec.c \
-       common/xml-utils.c \
        complaints.c \
        completer.c \
-       continuations.c \
        copying.c \
        corefile.c \
        corelow.c \
@@ -982,28 +1011,36 @@ COMMON_SFILES = \
        cp-namespace.c \
        cp-support.c \
        cp-valprint.c \
-       ctf.c \
+       ctfread.c \
        d-lang.c \
        d-namespace.c \
        d-valprint.c \
        dbxread.c \
        dcache.c \
        debug.c \
-       demangle.c \
+       debuginfod-support.c \
        dictionary.c \
        disasm.c \
-       disasm-selftests.c \
+       displaced-stepping.c \
        dummy-frame.c \
-       dwarf-index-cache.c \
-       dwarf-index-common.c \
-       dwarf-index-write.c \
-       dwarf2-frame.c \
-       dwarf2-frame-tailcall.c \
-       dwarf2expr.c \
-       dwarf2loc.c \
-       dwarf2read.c \
+       dwarf2/abbrev.c \
+       dwarf2/attribute.c \
+       dwarf2/comp-unit.c \
+       dwarf2/dwz.c \
+       dwarf2/expr.c \
+       dwarf2/frame-tailcall.c \
+       dwarf2/frame.c \
+       dwarf2/index-cache.c \
+       dwarf2/index-common.c \
+       dwarf2/index-write.c \
+       dwarf2/leb.c \
+       dwarf2/line-header.c \
+       dwarf2/loc.c \
+       dwarf2/macro.c \
+       dwarf2/read.c \
+       dwarf2/section.c \
+       dwarf2/stringify.c \
        eval.c \
-       event-loop.c \
        event-top.c \
        exceptions.c \
        exec.c \
@@ -1020,14 +1057,13 @@ COMMON_SFILES = \
        frame-base.c \
        frame-unwind.c \
        gcore.c \
+       gdb-demangle.c \
        gdb_bfd.c \
-       gdb-dlfcn.c \
        gdb_obstack.c \
        gdb_regex.c \
-       gdb_usleep.c \
        gdbarch.c \
-       gdbarch-selftests.c \
        gdbtypes.c \
+       gmp-utils.c \
        gnu-v2-abi.c \
        gnu-v3-abi.c \
        go-lang.c \
@@ -1055,6 +1091,8 @@ COMMON_SFILES = \
        macrotab.c \
        main.c \
        maint.c \
+       maint-test-options.c \
+       maint-test-settings.c \
        mdebugread.c \
        mem-break.c \
        memattr.c \
@@ -1093,7 +1131,9 @@ COMMON_SFILES = \
        remote-fileio.c \
        remote-notif.c \
        reverse.c \
+       run-on-main-thread.c \
        rust-lang.c \
+       rust-parse.c \
        sentinel-frame.c \
        ser-event.c \
        serial.c \
@@ -1101,6 +1141,7 @@ COMMON_SFILES = \
        solib.c \
        solib-target.c \
        source.c \
+       source-cache.c \
        stabsread.c \
        stack.c \
        std-regs.c \
@@ -1109,21 +1150,23 @@ COMMON_SFILES = \
        symmisc.c \
        symtab.c \
        target.c \
+       target-connection.c \
        target-dcache.c \
        target-descriptions.c \
        target-memory.c \
        test-target.c \
        thread.c \
        thread-iter.c \
-       thread-fsm.c \
        tid-parse.c \
        top.c \
+       tracectf.c \
        tracefile.c \
        tracefile-tfile.c \
        tracepoint.c \
        trad-frame.c \
        tramp-frame.c \
        target-float.c \
+       type-stack.c \
        typeprint.c \
        ui-file.c \
        ui-out.c \
@@ -1148,14 +1191,15 @@ SFILES = \
        cp-name-parser.y \
        d-exp.y \
        dtrace-probe.c \
+       elf-none-tdep.c \
        elfread.c \
        f-exp.y \
+       gcore-elf.c \
        gdb.c \
        go-exp.y \
        m2-exp.y \
        p-exp.y \
        proc-service.list \
-       rust-exp.y \
        ser-base.c \
        ser-unix.c \
        sol-thread.c \
@@ -1176,6 +1220,7 @@ SFILES = \
 # right, it is probably easiest just to list .h files here directly.
 
 HFILES_NO_SRCDIR = \
+       aarch32-tdep.h \
        aarch64-ravenscar-thread.h \
        aarch64-tdep.h \
        ada-lang.h \
@@ -1185,12 +1230,15 @@ HFILES_NO_SRCDIR = \
        amd64-darwin-tdep.h \
        amd64-linux-tdep.h \
        amd64-nat.h \
+       amd64-ravenscar-thread.h \
        amd64-tdep.h \
        annotate.h \
        arc-tdep.h \
        arch-utils.h \
        arm-linux-tdep.h \
+       arm-netbsd-tdep.h \
        arm-tdep.h \
+       async-event.h \
        auto-load.h \
        auxv.h \
        ax.h \
@@ -1216,7 +1264,6 @@ HFILES_NO_SRCDIR = \
        cp-abi.h \
        cp-support.h \
        csky-tdep.h \
-       ctf.h \
        d-lang.h \
        darwin-nat.h \
        dcache.h \
@@ -1225,20 +1272,20 @@ HFILES_NO_SRCDIR = \
        dictionary.h \
        disasm.h \
        dummy-frame.h \
-       dwarf-index-cache.h \
-       dwarf-index-common.h \
-       dwarf2-frame.h \
-       dwarf2-frame-tailcall.h \
-       dwarf2expr.h \
-       dwarf2loc.h \
-       dwarf2read.h \
-       event-loop.h \
+       dwarf2/frame-tailcall.h \
+       dwarf2/frame.h \
+       dwarf2/expr.h \
+       dwarf2/index-cache.h \
+       dwarf2/index-common.h \
+       dwarf2/loc.h \
+       dwarf2/read.h \
        event-top.h \
        exceptions.h \
        exec.h \
        expression.h \
        extension.h \
        extension-priv.h \
+       f-array-walker.h \
        f-lang.h \
        fbsd-nat.h \
        fbsd-tdep.h \
@@ -1248,17 +1295,16 @@ HFILES_NO_SRCDIR = \
        frame-unwind.h \
        frv-tdep.h \
        ft32-tdep.h \
+       gcore-elf.h \
        gcore.h \
        gdb_bfd.h \
        gdb_curses.h \
-       gdb-dlfcn.h \
        gdb_expat.h \
        gdb_obstack.h \
        gdb_proc_service.h \
        gdb_regex.h \
        gdb_select.h \
        gdb-stabs.h \
-       gdb_usleep.h \
        gdb_vfork.h \
        gdb_wchar.h \
        gdbarch.h \
@@ -1267,6 +1313,7 @@ HFILES_NO_SRCDIR = \
        gdbthread.h \
        gdbtypes.h \
        glibc-tdep.h \
+       gmp-utils.h \
        gnu-nat.h \
        go-lang.h \
        gregset.h \
@@ -1310,14 +1357,15 @@ HFILES_NO_SRCDIR = \
        memrange.h \
        microblaze-tdep.h \
        mips-linux-tdep.h \
-       mips-nbsd-tdep.h \
+       mips-netbsd-tdep.h \
        mips-tdep.h \
        mn10300-tdep.h \
        moxie-tdep.h \
-       nbsd-nat.h \
-       nbsd-tdep.h \
+       netbsd-nat.h \
+       netbsd-tdep.h \
        nds32-tdep.h \
        nios2-tdep.h \
+       elf-none-tdep.h \
        nto-tdep.h \
        objc-lang.h \
        objfiles.h \
@@ -1329,7 +1377,7 @@ HFILES_NO_SRCDIR = \
        parser-defs.h \
        ppc-fbsd-tdep.h \
        ppc-linux-tdep.h \
-       ppc-nbsd-tdep.h \
+       ppc-netbsd-tdep.h \
        ppc-obsd-tdep.h \
        ppc-ravenscar-thread.h \
        ppc-tdep.h \
@@ -1352,9 +1400,11 @@ HFILES_NO_SRCDIR = \
        remote-fileio.h \
        remote-notif.h \
        riscv-fbsd-tdep.h \
+       riscv-ravenscar-thread.h \
        riscv-tdep.h \
        rs6000-aix-tdep.h \
        rs6000-tdep.h \
+       run-on-main-thread.h \
        s390-linux-tdep.h \
        s390-tdep.h \
        score-tdep.h \
@@ -1372,16 +1422,15 @@ HFILES_NO_SRCDIR = \
        solib.h \
        solib-aix.h \
        solib-darwin.h \
-       solib-spu.h \
        solib-svr4.h \
        solib-target.h \
        solist.h \
        source.h \
+       source-cache.h \
        sparc-nat.h \
        sparc-ravenscar-thread.h \
        sparc-tdep.h \
        sparc64-tdep.h \
-       spu-tdep.h \
        stabsread.h \
        stack.h \
        stap-probe.h \
@@ -1393,11 +1442,13 @@ HFILES_NO_SRCDIR = \
        terminal.h \
        tid-parse.h \
        top.h \
+       tracectf.h \
        tracefile.h \
        tracepoint.h \
        trad-frame.h \
        target-float.h \
        tramp-frame.h \
+       type-stack.h \
        typeprint.h \
        ui-file.h \
        ui-out.h \
@@ -1415,12 +1466,16 @@ HFILES_NO_SRCDIR = \
        x86-linux-nat.h \
        x86-nat.h \
        xcoffread.h \
+       xml-builtin.h \
        xml-support.h \
        xml-syscall.h \
        xml-tdesc.h \
        xtensa-tdep.h \
+       arch/aarch32.h \
        arch/aarch64.h \
        arch/aarch64-insn.h \
+       arch/aarch64-mte-linux.h \
+       arch/arc.h \
        arch/arm.h \
        arch/i386.h \
        arch/ppc-linux-common.h \
@@ -1432,45 +1487,6 @@ HFILES_NO_SRCDIR = \
        cli/cli-setshow.h \
        cli/cli-style.h \
        cli/cli-utils.h \
-       common/buffer.h \
-       common/cleanups.h \
-       common/common-debug.h \
-       common/common-defs.h \
-       common/common-exceptions.h \
-       common/common-gdbthread.h \
-       common/common-regcache.h \
-       common/common-types.h \
-       common/common-utils.h \
-       common/job-control.h \
-       common/errors.h \
-       common/environ.h \
-       common/fileio.h \
-       common/format.h \
-       common/gdb_assert.h \
-       common/gdb_tilde_expand.h \
-       common/gdb_locale.h \
-       common/gdb_proc_service.h \
-       common/gdb_setjmp.h \
-       common/gdb_signals.h \
-       common/gdb_sys_time.h \
-       common/gdb_vecs.h \
-       common/gdb_wait.h \
-       common/common-inferior.h \
-       common/netstuff.h \
-       common/host-defs.h \
-       common/pathstuff.h \
-       common/print-utils.h \
-       common/ptid.h \
-       common/queue.h \
-       common/rsp-low.h \
-       common/run-time-clock.h \
-       common/signals-state-save-restore.h \
-       common/symbol.h \
-       common/tdesc.h \
-       common/vec.h \
-       common/version.h \
-       common/x86-xstate.h \
-       common/xml-utils.h \
        compile/compile.h \
        compile/compile-c.h \
        compile/compile-cplus.h \
@@ -1485,14 +1501,6 @@ HFILES_NO_SRCDIR = \
        config/djgpp/nl_types.h \
        config/i386/nm-i386gnu.h \
        config/sparc/nm-sol2.h \
-       gnulib/import/inttypes.in.h \
-       gnulib/import/stddef.in.h \
-       gnulib/import/stdint.in.h \
-       gnulib/import/str-two-way.h \
-       gnulib/import/string.in.h \
-       gnulib/import/extra/snippet/arg-nonnull.h \
-       gnulib/import/extra/snippet/c++defs.h \
-       gnulib/import/extra/snippet/warn-on-use.h \
        mi/mi-cmds.h \
        mi/mi-common.h \
        mi/mi-console.h \
@@ -1502,6 +1510,7 @@ HFILES_NO_SRCDIR = \
        mi/mi-parse.h \
        nat/aarch64-linux.h \
        nat/aarch64-linux-hw-point.h \
+       nat/aarch64-mte-linux-ptrace.h \
        nat/aarch64-sve-linux-ptrace.h \
        nat/amd64-linux-siginfo.h \
        nat/gdb_ptrace.h \
@@ -1539,11 +1548,12 @@ HFILES_NO_SRCDIR = \
        tui/tui-hooks.h \
        tui/tui-io.h \
        tui/tui-layout.h \
+       tui/tui-location.h \
+       tui/tui-out.h \
        tui/tui-regs.h \
        tui/tui-source.h \
        tui/tui-stack.h \
        tui/tui-win.h \
-       tui/tui-windata.h \
        tui/tui-wingeneral.h \
        tui/tui-winsource.h \
        x86-tdep.h
@@ -1578,14 +1588,14 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
        $(SUBDIR_TARGET_OBS) \
        $(SUBDIR_GCC_COMPILE_OBS)
 
-SUBDIRS = doc @subdirs@ data-directory $(GNULIB_BUILDDIR)
+SUBDIRS = doc @subdirs@ data-directory
 CLEANDIRS = $(SUBDIRS)
 
 # List of subdirectories in the build tree that must exist.
 # This is used to force build failures in existing trees when
 # a new directory is added.
 # The format here is for the `case' shell command.
-REQUIRED_SUBDIRS = doc | testsuite | $(GNULIB_BUILDDIR) | data-directory
+REQUIRED_SUBDIRS = doc | testsuite | data-directory
 
 # Parser intermediate files.
 YYFILES = \
@@ -1597,8 +1607,7 @@ YYFILES = \
        f-exp.c \
        go-exp.c \
        m2-exp.c \
-       p-exp.c \
-       rust-exp.c
+       p-exp.c
 
 # ada-lex.c is included by another file, so it shouldn't wind up as a
 # .o itself.
@@ -1613,10 +1622,9 @@ DISTSTUFF = $(YYFILES)
 generated_files = \
        ada-lex.c \
        config.h \
-       gcore \
        jit-reader.h \
-       $(GNULIB_H) \
-       $(NAT_GENERATED_FILES)
+       $(NAT_GENERATED_FILES) \
+       $(NM_H)
 
 # Flags needed to compile Python code
 PYTHON_CFLAGS = @PYTHON_CFLAGS@
@@ -1726,7 +1734,7 @@ check-headers:
        @echo Checking headers.
        for i in $(CHECK_HEADERS) ; do \
                $(CXX) $(CXX_DIALECT) -x c++-header -c -fsyntax-only \
-               $(INTERNAL_CFLAGS) -include defs.h $(srcdir)/$$i ; \
+               $(INTERNAL_CFLAGS) $(CXXFLAGS) -include defs.h $(srcdir)/$$i ; \
        done
 .PHONY: check-headers
 
@@ -1750,7 +1758,7 @@ install-only: $(CONFIG_INSTALL)
                  true ; \
                fi ; \
                $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
-               $(INSTALL_PROGRAM) gdb$(EXEEXT) \
+               $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) gdb$(EXEEXT) \
                        $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
                $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
                $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
@@ -1843,7 +1851,7 @@ INIT_FILES = \
              $(COMMON_OBS))))
 
 init.c: stamp-init; @true
-stamp-init: $(INIT_FILES)
+stamp-init: $(INIT_FILES) config.status
        @$(ECHO_INIT_C) echo "Making init.c"
        @rm -f init.c-tmp init.l-tmp
        @touch init.c-tmp
@@ -1886,12 +1894,6 @@ ifneq ($(CODESIGN_CERT),)
        $(ECHO_SIGN) $(CODESIGN) -s $(CODESIGN_CERT) gdb$(EXEEXT)
 endif
 
-# Convenience rule to handle recursion.
-$(LIBGNU) $(GNULIB_H): all-lib
-all-lib: $(GNULIB_BUILDDIR)/Makefile
-       @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
-.PHONY: all-lib
-
 # Convenience rule to handle recursion.
 .PHONY: all-data-directory
 all-data-directory: data-directory/Makefile
@@ -1944,14 +1946,8 @@ clean mostlyclean: $(CONFIG_CLEAN)
 # I believe this is wrong; the makefile standards for distclean just
 # describe removing files; the only sort of "re-create a distribution"
 # functionality described is if the distributed files are unmodified.
-# NB: While GDBSERVER might be configured on native systems, it isn't
-# always included in SUBDIRS.  Remove the gdbserver files explicitly.
 distclean: clean
        @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
-       rm -rf $(GNULIB_BUILDDIR)
-       rm -f gdbserver/config.status gdbserver/config.log
-       rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
-       rm -f gdbserver/Makefile gdbserver/config.cache
        rm -f nm.h config.status config.h stamp-h b jit-reader.h
        rm -f gdb-gdb.py gdb-gdb.gdb
        rm -f y.output yacc.acts yacc.tmp y.tab.h
@@ -1971,7 +1967,7 @@ local-maintainer-clean:
        rm -f c-exp.c \
                cp-name-parser.c \
                ada-lex.c ada-exp.c \
-               d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
+               d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c
        rm -f TAGS
        rm -f $(YYFILES)
        rm -f nm.h config.status
@@ -2000,25 +1996,10 @@ subdir_do: force
        done
 
 Makefile: Makefile.in config.status
-       # Regenerate the Makefile and the tm.h / nm.h links.
-       CONFIG_FILES="Makefile" \
-         CONFIG_COMMANDS= \
-         CONFIG_HEADERS= \
-         $(SHELL) config.status
-
-$(GNULIB_BUILDDIR)/Makefile: gnulib/Makefile.in config.status
-       @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
-         CONFIG_COMMANDS="depfiles" \
-         CONFIG_HEADERS= \
-         CONFIG_LINKS= \
-         $(SHELL) config.status
+       $(SHELL) config.status $@
 
 data-directory/Makefile: data-directory/Makefile.in config.status
-       CONFIG_FILES="data-directory/Makefile" \
-         CONFIG_COMMANDS="depfiles" \
-         CONFIG_HEADERS= \
-         CONFIG_LINKS= \
-         $(SHELL) config.status
+       $(SHELL) config.status $@
 
 .PHONY: run
 run: Makefile
@@ -2038,11 +2019,11 @@ gdb-gdb.gdb: $(srcdir)/gdb-gdb.gdb.in
 
 config.h: stamp-h ; @true
 stamp-h: $(srcdir)/config.in config.status
-       CONFIG_HEADERS=config.h:config.in \
-         CONFIG_COMMANDS="default depdir" \
-         CONFIG_FILES= \
-         CONFIG_LINKS= \
-         $(SHELL) config.status
+       $(SHELL) config.status config.h
+
+nm.h: stamp-nmh ; @true
+stamp-nmh: config.status
+       $(SHELL) config.status nm.h
 
 config.status: $(srcdir)/configure configure.nat configure.tgt configure.host ../bfd/development.sh
        $(SHELL) config.status --recheck
@@ -2054,10 +2035,10 @@ ACLOCAL_AMFLAGS = -I ../config
 aclocal_m4_deps = \
        configure.ac \
        acx_configure_dir.m4 \
-       libmcheck.m4 \
        transform.m4 \
        ../bfd/bfd.m4 \
        ../config/acinclude.m4 \
+       ../config/enable.m4 \
        ../config/plugins.m4 \
        ../config/lead-dot.m4 \
        ../config/override.m4 \
@@ -2071,7 +2052,8 @@ aclocal_m4_deps = \
        ../config/depstand.m4 \
        ../config/lcmessage.m4 \
        ../config/codeset.m4 \
-       ../config/zlib.m4
+       ../config/zlib.m4 \
+       ../config/ax_pthread.m4
 
 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
@@ -2122,8 +2104,8 @@ $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copy
 version.c: stamp-version; @true
 # Note that the obvious names for the temp file are taken by
 # create-version.sh.
-stamp-version: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/common/create-version.sh
-       $(ECHO_GEN) $(SHELL) $(srcdir)/common/create-version.sh $(srcdir) \
+stamp-version: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/../gdbsupport/create-version.sh
+       $(ECHO_GEN) $(SHELL) $(srcdir)/../gdbsupport/create-version.sh $(srcdir) \
            $(host_alias) $(target_alias) version-t.t
        @$(SHELL) $(srcdir)/../move-if-change version-t.t version.c
        @echo stamp > stamp-version
@@ -2146,6 +2128,7 @@ force_update:
 MAKEOVERRIDES =
 
 ALLDEPFILES = \
+       aarch32-tdep.c \
        aarch64-fbsd-nat.c \
        aarch64-fbsd-tdep.c \
        aarch64-linux-nat.c \
@@ -2159,7 +2142,7 @@ ALLDEPFILES = \
        alpha-linux-nat.c \
        alpha-linux-tdep.c \
        alpha-mdebug-tdep.c \
-       alpha-nbsd-tdep.c \
+       alpha-netbsd-tdep.c \
        alpha-obsd-tdep.c \
        alpha-tdep.c \
        amd64-bsd-nat.c \
@@ -2170,12 +2153,14 @@ ALLDEPFILES = \
        amd64-linux-nat.c \
        amd64-linux-tdep.c \
        amd64-nat.c \
-       amd64-nbsd-nat.c \
-       amd64-nbsd-tdep.c \
+       amd64-netbsd-nat.c \
+       amd64-netbsd-tdep.c \
        amd64-obsd-nat.c \
        amd64-obsd-tdep.c \
+       amd64-ravenscar-thread.c \
        amd64-sol2-tdep.c \
        amd64-tdep.c \
+       arc-linux-nat.c \
        arc-tdep.c \
        arm.c \
        arm-bsd-tdep.c \
@@ -2185,14 +2170,14 @@ ALLDEPFILES = \
        arm-linux.c \
        arm-linux-nat.c \
        arm-linux-tdep.c \
-       arm-nbsd-nat.c \
-       arm-nbsd-tdep.c \
+       arm-netbsd-nat.c \
+       arm-netbsd-tdep.c \
        arm-obsd-tdep.c \
-       arm-symbian-tdep.c \
        arm-tdep.c \
        avr-tdep.c \
        bfin-linux-tdep.c \
        bfin-tdep.c \
+       bpf-tdep.c \
        bsd-kvm.c \
        bsd-uthread.c \
        csky-linux-tdep.c \
@@ -2209,14 +2194,13 @@ ALLDEPFILES = \
        hppa-bsd-tdep.c \
        hppa-linux-nat.c \
        hppa-linux-tdep.c \
-       hppa-nbsd-nat.c \
-       hppa-nbsd-tdep.c \
+       hppa-netbsd-nat.c \
+       hppa-netbsd-tdep.c \
        hppa-obsd-nat.c \
        hppa-obsd-tdep.c \
        hppa-tdep.c \
        i386-bsd-nat.c \
        i386-bsd-tdep.c \
-       i386-cygwin-tdep.c \
        i386-darwin-nat.c \
        i386-darwin-tdep.c \
        i386-dicos-tdep.c \
@@ -2226,13 +2210,14 @@ ALLDEPFILES = \
        i386-gnu-tdep.c \
        i386-linux-nat.c \
        i386-linux-tdep.c \
-       i386-nbsd-nat.c \
-       i386-nbsd-tdep.c \
+       i386-netbsd-nat.c \
+       i386-netbsd-tdep.c \
        i386-obsd-nat.c \
        i386-obsd-tdep.c \
        i386-sol2-nat.c \
        i386-sol2-tdep.c \
        i386-tdep.c \
+       i386-windows-tdep.c \
        i387-tdep.c \
        ia64-libunwind-tdep.c \
        ia64-linux-nat.c \
@@ -2260,15 +2245,15 @@ ALLDEPFILES = \
        mips-fbsd-tdep.c \
        mips-linux-nat.c \
        mips-linux-tdep.c \
-       mips-nbsd-nat.c \
-       mips-nbsd-tdep.c \
+       mips-netbsd-nat.c \
+       mips-netbsd-tdep.c \
        mips-sde-tdep.c \
        mips-tdep.c \
        mips64-obsd-nat.c \
        mips64-obsd-tdep.c \
        msp430-tdep.c \
-       nbsd-nat.c \
-       nbsd-tdep.c \
+       netbsd-nat.c \
+       netbsd-tdep.c \
        nds32-tdep.c \
        nios2-linux-tdep.c \
        nios2-tdep.c \
@@ -2279,8 +2264,8 @@ ALLDEPFILES = \
        ppc-fbsd-tdep.c \
        ppc-linux-nat.c \
        ppc-linux-tdep.c \
-       ppc-nbsd-nat.c \
-       ppc-nbsd-tdep.c \
+       ppc-netbsd-nat.c \
+       ppc-netbsd-tdep.c \
        ppc-obsd-nat.c \
        ppc-obsd-tdep.c \
        ppc-ravenscar-thread.c \
@@ -2293,6 +2278,8 @@ ALLDEPFILES = \
        riscv-fbsd-tdep.c \
        riscv-linux-nat.c \
        riscv-linux-tdep.c \
+       riscv-none-tdep.c \
+       riscv-ravenscar-thread.c \
        riscv-tdep.c \
        rl78-tdep.c \
        rs6000-lynx178-tdep.c \
@@ -2308,18 +2295,17 @@ ALLDEPFILES = \
        ser-pipe.c \
        ser-tcp.c \
        ser-uds.c \
-       sh-nbsd-nat.c \
-       sh-nbsd-tdep.c \
+       sh-netbsd-nat.c \
+       sh-netbsd-tdep.c \
        sh-tdep.c \
        sol2-tdep.c \
        solib-aix.c \
-       solib-spu.c \
        solib-svr4.c \
        sparc-linux-nat.c \
        sparc-linux-tdep.c \
        sparc-nat.c \
-       sparc-nbsd-nat.c \
-       sparc-nbsd-tdep.c \
+       sparc-netbsd-nat.c \
+       sparc-netbsd-tdep.c \
        sparc-obsd-tdep.c \
        sparc-ravenscar-thread.c \
        sparc-sol2-nat.c \
@@ -2330,21 +2316,18 @@ ALLDEPFILES = \
        sparc64-linux-nat.c \
        sparc64-linux-tdep.c \
        sparc64-nat.c \
-       sparc64-nbsd-nat.c \
-       sparc64-nbsd-tdep.c \
+       sparc64-netbsd-nat.c \
+       sparc64-netbsd-tdep.c \
        sparc64-obsd-nat.c \
        sparc64-obsd-tdep.c \
        sparc64-sol2-tdep.c \
        sparc64-tdep.c \
-       spu-linux-nat.c \
-       spu-multiarch.c \
-       spu-tdep.c \
        tilegx-linux-nat.c \
        tilegx-linux-tdep.c \
        tilegx-tdep.c \
        v850-tdep.c \
        vax-bsd-nat.c \
-       vax-nbsd-tdep.c \
+       vax-netbsd-tdep.c \
        vax-tdep.c \
        windows-nat.c \
        windows-tdep.c \
@@ -2356,9 +2339,7 @@ ALLDEPFILES = \
        xtensa-linux-nat.c \
        xtensa-linux-tdep.c \
        xtensa-tdep.c \
-       xtensa-xtregs.c \
-       common/mingw-strerror.c \
-       common/posix-strerror.c
+       xtensa-xtregs.c
 
 # Some files need explicit build rules (due to -Werror problems) or due
 # to sub-directory fun 'n' games.
@@ -2514,7 +2495,7 @@ install-gdbtk:
          true ; \
        fi ; \
        $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
-       $(INSTALL_PROGRAM) insight$(EXEEXT) \
+       $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) insight$(EXEEXT) \
                $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
        $(SHELL) $(srcdir)/../mkinstalldirs \
                $(DESTDIR)$(GDBTK_LIBRARY) ; \
This page took 0.040636 seconds and 4 git commands to generate.