Remove code that checks for GNU/non-GNU make
[deliverable/binutils-gdb.git] / gdb / Makefile.in
index b636045a202e34ce60c244d2fb2df008c33e7401..f53b1216ce68da22684bd6a730c991365ff4c16f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1989-2012 Free Software Foundation, Inc.
+# Copyright (C) 1989-2016 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
@@ -44,6 +44,8 @@ htmldir = @htmldir@
 pdfdir = @pdfdir@
 includedir = @includedir@
 
+install_sh = @install_sh@
+
 # This can be referenced by `LIBINTL' as computed by
 # ZW_GNU_GETTEXT_SISTER_DIR.
 top_builddir = .
@@ -56,6 +58,8 @@ LN_S = @LN_S@
 
 INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@
 
 DESTDIR =
@@ -66,6 +70,7 @@ RANLIB = @RANLIB@
 DLLTOOL = @DLLTOOL@
 WINDRES = @WINDRES@
 MIG = @MIG@
+STRIP = @STRIP@
 
 XGETTEXT = @XGETTEXT@
 GMSGFMT = @GMSGFMT@
@@ -80,6 +85,8 @@ CATALOGS = @CATALOGS@
 # will be incorrectly compiled.  The "fixincludes" script in the gcc
 # distribution will fix your include files up.
 CC=@CC@
+CXX=@CXX@
+CXX_DIALECT= @CXX_DIALECT@
 
 # Dependency tracking information.
 DEPMODE = @CCDEPMODE@
@@ -88,7 +95,7 @@ depcomp = $(SHELL) $(srcdir)/../depcomp
 
 # Note that these are overridden by GNU make-specific code below if
 # GNU make is used.  The overrides implement dependency tracking.
-COMPILE.pre = $(CC)
+COMPILE.pre = $(CXX) $(CXX_DIALECT)
 COMPILE.post = -c -o $@
 COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
 POSTCOMPILE = @true
@@ -96,6 +103,7 @@ POSTCOMPILE = @true
 # Directory containing source files.
 srcdir = @srcdir@
 VPATH = @srcdir@
+top_srcdir = @top_srcdir@
 
 YACC=@YACC@
 
@@ -117,8 +125,8 @@ MAKEHTMLFLAGS =
 
 # Set this up with gcc if you have gnu ld and the loader will print out
 # line numbers for undefined references.
-#CC_LD=gcc -static
-CC_LD=$(CC)
+#CC_LD=g++ -static
+CC_LD=$(CXX) $(CXX_DIALECT)
 
 # Where is our "include" directory?  Typically $(srcdir)/../include.
 # This is essentially the header file directory for the library
@@ -135,6 +143,12 @@ BFD = $(BFD_DIR)/libbfd.a
 BFD_SRC = $(srcdir)/$(BFD_DIR)
 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
 
+# This is where we get zlib from.  zlibdir is -L../zlib and zlibinc is
+# -I../zlib, unless we were configured with --with-system-zlib, in which
+# case both are empty.
+ZLIB = @zlibdir@ -lz
+ZLIBINC = @zlibinc@
+
 # Where is the decnumber library?  Typically in ../libdecnumber.
 LIBDECNUMBER_DIR = ../libdecnumber
 LIBDECNUMBER = $(LIBDECNUMBER_DIR)/libdecnumber.a
@@ -151,6 +165,16 @@ READLINE_CFLAGS = @READLINE_CFLAGS@
 # Where is expat?  This will be empty if expat was not available.
 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
+# available.
+LIBBABELTRACE = @LIBBABELTRACE@
+
+# Where is libipt?  This will be empty if libipt was not available.
+LIBIPT = @LIBIPT@
+
 WARN_CFLAGS = @WARN_CFLAGS@
 WERROR_CFLAGS = @WERROR_CFLAGS@
 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
@@ -158,6 +182,8 @@ GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
 
 GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " \
                   | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
+GDB_WARN_CFLAGS_NO_DEFS = `echo " $(GDB_WARN_CFLAGS) " \
+                  | sed "s/ -Wold-style-definition / -Wno-old-style-definition /g"`
 
 RDYNAMIC = @RDYNAMIC@
 
@@ -166,9 +192,15 @@ INTL = @LIBINTL@
 INTL_DEPS = @LIBINTL_DEP@
 INTL_CFLAGS = @INCINTL@
 
+# Where is the ICONV library?  This will be empty if in libc or not available.
+LIBICONV = @LIBICONV@
+
 # Did the user give us a --with-gdb-datadir option?
 GDB_DATADIR = @GDB_DATADIR@
 
+# Flags to pass to gdb when invoked with "make run".
+GDBFLAGS =
+
 # Helper code from gnulib.
 GNULIB_BUILDDIR = build-gnulib
 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
@@ -200,13 +232,14 @@ SUBDIR_CLI_CFLAGS=
 #
 SUBDIR_MI_OBS = \
        mi-out.o mi-console.o \
-       mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
+       mi-cmds.o mi-cmd-catch.o mi-cmd-env.o \
+       mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
        mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o \
        mi-cmd-info.o mi-interp.o \
        mi-main.o mi-parse.o mi-getopt.o
 SUBDIR_MI_SRCS = \
        mi/mi-out.c mi/mi-console.c \
-       mi/mi-cmds.c mi/mi-cmd-env.c \
+       mi/mi-cmds.c mi/mi-cmd-catch.c mi/mi-cmd-env.c \
        mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
        mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \
        mi/mi-cmd-target.c mi/mi-cmd-info.c mi/mi-interp.c \
@@ -262,27 +295,109 @@ SUBDIR_TUI_LDFLAGS=
 SUBDIR_TUI_CFLAGS= \
        -DTUI=1
 
+#
+# GCC Compile support sub-directory definitions
+#
+SUBDIR_GCC_COMPILE_OBS = \
+       compile.o compile-c-symbols.o compile-c-types.o \
+       compile-object-load.o compile-object-run.o \
+       compile-loc2c.o compile-c-support.o
+SUBDIR_GCC_COMPILE_SRCS = \
+       compile/compile.c \
+       compile/compile-c-symbols.c \
+       compile/compile-c-types.c \
+       compile/compile-object-load.c \
+       compile/compile-object-load.h \
+       compile/compile-object-run.c \
+       compile/compile-object-run.h \
+       compile/compile-loc2c.c \
+       compile/compile-c-support.c
+
+# Guile sub directory definitons for guile support.
+
+SUBDIR_GUILE_OBS = \
+       guile.o \
+       scm-arch.o \
+       scm-auto-load.o \
+       scm-block.o \
+       scm-breakpoint.o \
+       scm-cmd.o \
+       scm-disasm.o \
+       scm-exception.o \
+       scm-frame.o \
+       scm-gsmob.o \
+       scm-iterator.o \
+       scm-lazy-string.o \
+       scm-objfile.o \
+       scm-math.o \
+       scm-param.o \
+       scm-ports.o \
+       scm-pretty-print.o \
+       scm-progspace.o \
+       scm-safe-call.o \
+       scm-string.o \
+       scm-symbol.o \
+       scm-symtab.o \
+       scm-type.o \
+       scm-utils.o \
+       scm-value.o
+SUBDIR_GUILE_SRCS = \
+       guile/guile.c \
+       guile/scm-arch.c \
+       guile/scm-auto-load.c \
+       guile/scm-block.c \
+       guile/scm-breakpoint.c \
+       guile/scm-cmd.c \
+       guile/scm-disasm.c \
+       guile/scm-exception.c \
+       guile/scm-frame.c \
+       guile/scm-gsmob.c \
+       guile/scm-iterator.c \
+       guile/scm-lazy-string.c \
+       guile/scm-objfile.c \
+       guile/scm-math.c \
+       guile/scm-param.c \
+       guile/scm-ports.c \
+       guile/scm-pretty-print.c \
+       guile/scm-progspace.c \
+       guile/scm-safe-call.c \
+       guile/scm-string.c \
+       guile/scm-symbol.c \
+       guile/scm-symtab.c \
+       guile/scm-type.c \
+       guile/scm-utils.c \
+       guile/scm-value.c
+SUBDIR_GUILE_DEPS =
+SUBDIR_GUILE_LDFLAGS=
+SUBDIR_GUILE_CFLAGS=
+
 #
 # python sub directory definitons
 #
 SUBDIR_PYTHON_OBS = \
        python.o \
+       py-arch.o \
        py-auto-load.o \
        py-block.o \
        py-bpevent.o \
        py-breakpoint.o \
        py-cmd.o \
        py-continueevent.o \
+       py-xmethods.o \
        py-event.o \
        py-evtregistry.o \
        py-evts.o \
        py-exitedevent.o \
        py-finishbreakpoint.o \
        py-frame.o \
+       py-framefilter.o \
        py-function.o \
+       py-gdb-readline.o \
        py-inferior.o \
+       py-infevents.o \
        py-infthread.o \
        py-lazy-string.o \
+       py-linetable.o \
        py-newobjfileevent.o \
        py-objfile.o \
        py-param.o \
@@ -294,27 +409,35 @@ SUBDIR_PYTHON_OBS = \
        py-symtab.o \
        py-threadevent.o \
        py-type.o \
+       py-unwind.o \
        py-utils.o \
-       py-value.o
+       py-value.o \
+       py-varobj.o
 
 SUBDIR_PYTHON_SRCS = \
        python/python.c \
+       python/py-arch.c \
        python/py-auto-load.c \
        python/py-block.c \
        python/py-bpevent.c \
        python/py-breakpoint.c \
        python/py-cmd.c \
        python/py-continueevent.c \
+       python/py-xmethods.c \
        python/py-event.c \
        python/py-evtregistry.c \
        python/py-evts.c \
        python/py-exitedevent.c \
        python/py-finishbreakpoint.c \
        python/py-frame.c \
+       python/py-framefilter.c \
        python/py-function.c \
+       python/py-gdb-readline.c \
        python/py-inferior.c \
+       python/py-infevents.c \
        python/py-infthread.c \
        python/py-lazy-string.c \
+       python/py-linetable.c \
        python/py-newobjfileevent.c \
        python/py-objfile.c \
        python/py-param.c \
@@ -326,8 +449,10 @@ SUBDIR_PYTHON_SRCS = \
        python/py-symtab.c \
        python/py-threadevent.c \
        python/py-type.c \
+       python/py-unwind.c \
        python/py-utils.c \
-       python/py-value.c
+       python/py-value.c \
+       python/py-varobj.c
 SUBDIR_PYTHON_DEPS =
 SUBDIR_PYTHON_LDFLAGS=
 SUBDIR_PYTHON_CFLAGS=
@@ -406,6 +531,7 @@ CONFIG_ALL= @CONFIG_ALL@
 CONFIG_CLEAN= @CONFIG_CLEAN@
 CONFIG_INSTALL = @CONFIG_INSTALL@
 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
+HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
 
 # -I. for config files.
 # -I$(srcdir) for gdb internal headers.
@@ -423,9 +549,10 @@ GLOBAL_CFLAGS = $(MH_CFLAGS)
 
 PROFILE_CFLAGS = @PROFILE_CFLAGS@
 
-# CFLAGS is specifically reserved for setting from the command line
-# when running make.  I.E.  "make CFLAGS=-Wmissing-prototypes".
+# These are specifically reserved for setting from the command line
+# when running make.  I.E.: "make CFLAGS=-Wmissing-prototypes".
 CFLAGS = @CFLAGS@
+CXXFLAGS = @CXXFLAGS@
 
 # Set by configure, for e.g. expat.  Python installations are such that
 # C headers are included using their basename (for example, we #include
@@ -433,17 +560,12 @@ CFLAGS = @CFLAGS@
 # 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@ @PYTHON_CPPFLAGS@
-
-# Need to pass this to testsuite for "make check".  Probably should be
-# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
-# so "make check" has the same result no matter where it is run.
-CXXFLAGS = -g -O
+INTERNAL_CPPFLAGS = @CPPFLAGS@ @GUILE_CPPFLAGS@ @PYTHON_CPPFLAGS@
 
 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
 INTERNAL_CFLAGS_BASE = \
-       $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
-       $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
+       $(CXXFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
+       $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) $(ZLIBINC) \
        $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
        $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
@@ -457,7 +579,9 @@ LDFLAGS = @LDFLAGS@
 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
 # and have it work; that's why CFLAGS is here.
 # PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
-INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS)
+INTERNAL_LDFLAGS = \
+       $(CXXFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) \
+       $(LDFLAGS) $(CONFIG_LDFLAGS)
 
 # If your system is missing alloca(), or, more likely, it's there but
 # it doesn't work, then refer to libiberty.
@@ -465,10 +589,11 @@ INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_
 # 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) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
-       $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ @PYTHON_LIBS@ \
-       $(LIBEXPAT) \
-       $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU)
+CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(ZLIB) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
+       $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) \
+       @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \
+       $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \
+       $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV)
 CDEPS = $(XM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
        $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
 
@@ -488,8 +613,10 @@ RUNTESTFLAGS=
 # XML files to build in to GDB.
 XMLFILES = $(srcdir)/features/gdb-target.dtd $(srcdir)/features/xinclude.dtd \
        $(srcdir)/features/library-list.dtd \
+       $(srcdir)/features/library-list-aix.dtd \
        $(srcdir)/features/library-list-svr4.dtd $(srcdir)/features/osdata.dtd \
-       $(srcdir)/features/threads.dtd $(srcdir)/features/traceframe-info.dtd
+       $(srcdir)/features/threads.dtd $(srcdir)/features/traceframe-info.dtd \
+       $(srcdir)/features/btrace.dtd $(srcdir)/features/btrace-conf.dtd
 
 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
 # interface to the serial port.  Hopefully if get ported to OS/2, VMS,
@@ -501,7 +628,8 @@ SER_HARDWIRE = @SER_HARDWIRE@
 
 # The `remote' debugging target is supported for most architectures,
 # but not all (e.g. 960)
-REMOTE_OBS = remote.o dcache.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o
+REMOTE_OBS = remote.o dcache.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o \
+       remote-notif.o ctf.o tracefile.o tracefile-tfile.o
 
 # This is remote-sim.o if a simulator is to be linked in.
 SIM_OBS = @SIM_OBS@
@@ -512,29 +640,34 @@ TARGET_OBS = @TARGET_OBS@
 # All target-dependent objects files that require 64-bit CORE_ADDR
 # (used with --enable-targets=all --enable-64-bit-bfd).
 ALL_64_TARGET_OBS = \
+       aarch64-tdep.o aarch64-linux-tdep.o aarch64-newlib-tdep.o aarch64-insn.o \
        alphabsd-tdep.o alphafbsd-tdep.o alpha-linux-tdep.o alpha-mdebug-tdep.o \
-       alphanbsd-tdep.o alphaobsd-tdep.o alpha-osf1-tdep.o alpha-tdep.o \
+       alphanbsd-tdep.o alphaobsd-tdep.o alpha-tdep.o \
        amd64fbsd-tdep.o amd64-darwin-tdep.o amd64-dicos-tdep.o \
        amd64-linux-tdep.o amd64nbsd-tdep.o \
        amd64obsd-tdep.o amd64-sol2-tdep.o amd64-tdep.o amd64-windows-tdep.o \
-       ia64-hpux-tdep.o ia64-linux-tdep.o ia64-vms-tdep.o ia64-tdep.o \
+       ia64-linux-tdep.o ia64-vms-tdep.o ia64-tdep.o \
        mips64obsd-tdep.o \
        sparc64fbsd-tdep.o sparc64-linux-tdep.o sparc64nbsd-tdep.o \
        sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o
 
 # All other target-dependent objects files (used with --enable-targets=all).
 ALL_TARGET_OBS = \
-       armbsd-tdep.o arm-linux-tdep.o arm-symbian-tdep.o \
+       arc-tdep.o \
+       armbsd-tdep.o arm.o arm-linux.o arm-linux-tdep.o \
+       arm-get-next-pcs.o arm-symbian-tdep.o \
        armnbsd-tdep.o armobsd-tdep.o \
        arm-tdep.o arm-wince-tdep.o \
        avr-tdep.o \
        bfin-linux-tdep.o bfin-tdep.o \
-       cris-tdep.o \
+       cris-linux-tdep.o cris-tdep.o \
        dicos-tdep.o \
+       fbsd-tdep.o \
        frv-linux-tdep.o frv-tdep.o \
+       ft32-tdep.o \
        h8300-tdep.o \
        hppabsd-tdep.o hppanbsd-tdep.o hppaobsd-tdep.o \
-       hppa-hpux-tdep.o hppa-linux-tdep.o hppa-tdep.o \
+       hppa-linux-tdep.o hppa-tdep.o \
        i386bsd-tdep.o i386-cygwin-tdep.o i386fbsd-tdep.o i386gnu-tdep.o \
        i386-linux-tdep.o i386nbsd-tdep.o i386-nto-tdep.o i386obsd-tdep.o \
        i386-sol2-tdep.o i386-tdep.o i387-tdep.o \
@@ -549,23 +682,28 @@ ALL_TARGET_OBS = \
        m88k-tdep.o \
        mep-tdep.o \
        microblaze-tdep.o microblaze-linux-tdep.o \
-       mips-irix-tdep.o mips-linux-tdep.o \
+       mips-linux-tdep.o mips-sde-tdep.o \
        mipsnbsd-tdep.o mips-tdep.o \
        mn10300-linux-tdep.o mn10300-tdep.o \
        moxie-tdep.o \
+       msp430-tdep.o \
        mt-tdep.o \
+       nds32-tdep.o \
+       nios2-tdep.o nios2-linux-tdep.o \
        nto-tdep.o \
-       ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \
-       rl78-tdep.o \
-       rs6000-aix-tdep.o rs6000-tdep.o \
+       ppc-linux-tdep.o ppcfbsd-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o  \
+       ppc-sysv-tdep.o ppc64-tdep.o rl78-tdep.o \
+       rs6000-aix-tdep.o rs6000-tdep.o solib-aix.o ppc-ravenscar-thread.o \
+       rs6000-lynx178-tdep.o \
        rx-tdep.o \
-       s390-tdep.o \
+       s390-linux-tdep.o \
        score-tdep.o \
        sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \
        sparc-linux-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \
-       sparc-sol2-tdep.o sparc-tdep.o \
+       sparc-sol2-tdep.o sparc-tdep.o sparc-ravenscar-thread.o \
        spu-tdep.o spu-multiarch.o solib-spu.o \
        tic6x-tdep.o tic6x-linux-tdep.o \
+       tilegx-tdep.o tilegx-linux-tdep.o \
        v850-tdep.o \
        vaxnbsd-tdep.o vaxobsd-tdep.o vax-tdep.o \
        xstormy16-tdep.o \
@@ -574,14 +712,13 @@ ALL_TARGET_OBS = \
        bsd-uthread.o \
        nbsd-tdep.o obsd-tdep.o \
        sol2-tdep.o \
-       solib-frv.o solib-irix.o solib-svr4.o \
-       solib-som.o solib-pa64.o solib-darwin.o solib-dsbt.o \
-       dbug-rom.o dink32-rom.o ppcbug-rom.o m32r-rom.o dsrec.o monitor.o \
-       remote-m32r-sdi.o remote-mips.o \
+       solib-frv.o solib-svr4.o \
+       solib-darwin.o solib-dsbt.o \
        xcoffread.o \
        symfile-mem.o \
        windows-tdep.o \
-       linux-record.o
+       linux-record.o \
+       ravenscar-thread.o
 
 # Host-dependent makefile fragment comes in here.
 @host_makefile_frag@
@@ -606,6 +743,7 @@ FLAGS_TO_PASS = \
        "CC=$(CC)" \
        "CFLAGS=$(CFLAGS)" \
        "CXX=$(CXX)" \
+       "CXX_DIALECT=$(CXX_DIALECT)" \
        "CXXFLAGS=$(CXXFLAGS)" \
        "DLLTOOL=$(DLLTOOL)" \
        "LDFLAGS=$(LDFLAGS)" \
@@ -617,6 +755,7 @@ FLAGS_TO_PASS = \
        "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
        "INSTALL=$(INSTALL)" \
        "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
+       "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
        "INSTALL_DATA=$(INSTALL_DATA)" \
        "RUNTEST=$(RUNTEST)" \
        "RUNTESTFLAGS=$(RUNTESTFLAGS)"
@@ -641,19 +780,18 @@ CC_FOR_TARGET = ` \
     fi; \
   fi`
 
-CXX = gcc
 CXX_FOR_TARGET = ` \
-  if [ -f $${rootme}/../gcc/xgcc ] ; then \
+  if [ -f $${rootme}/../gcc/xg++ ] ; then \
     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
-      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
+      echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
     else \
-      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
+      echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/; \
     fi; \
   else \
     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
       echo $(CXX); \
     else \
-      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
+      t='$(program_transform_name)'; echo g++ | sed -e '' $$t; \
     fi; \
   fi`
 
@@ -676,7 +814,8 @@ TARGET_FLAGS_TO_PASS = \
        "MAKEHTML=$(MAKEHTML)" \
        "RUNTEST=$(RUNTEST)" \
        "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
-       "FORCE_PARALLEL=$(FORCE_PARALLEL)"
+       "FORCE_PARALLEL=$(FORCE_PARALLEL)" \
+       "TESTS=$(TESTS)"
 
 # All source files that go into linking GDB.
 # Links made at configuration time should not be specified here, since
@@ -689,47 +828,53 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
        agent.c \
        bcache.c \
        bfd-target.c \
-       block.c blockframe.c breakpoint.c buildsym.c \
-       c-exp.y c-lang.c c-typeprint.c c-valprint.c \
-       charset.c cleanups.c cli-out.c coffread.c coff-pe-read.c \
+       block.c blockframe.c \
+       breakpoint.c break-catch-sig.c break-catch-throw.c \
+       break-catch-syscall.c \
+       build-id.c buildsym.c \
+       c-exp.y c-lang.c c-typeprint.c c-valprint.c c-varobj.c \
+       charset.c common/cleanups.c cli-out.c coffread.c coff-pe-read.c \
        complaints.c completer.c continuations.c corefile.c corelow.c \
        cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \
-       d-lang.c d-valprint.c \
+       d-exp.y d-lang.c d-namespace.c d-valprint.c \
        cp-name-parser.y \
-       dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \
+       dbxread.c demangle.c dictionary.c disasm.c doublest.c \
+       dtrace-probe.c dummy-frame.c \
        dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \
        dwarf2-frame-tailcall.c \
        elfread.c environ.c eval.c event-loop.c event-top.c \
-       exceptions.c expprint.c \
+       exceptions.c expprint.c extension.c \
        f-exp.y f-lang.c f-typeprint.c f-valprint.c filesystem.c \
        findcmd.c findvar.c frame.c frame-base.c frame-unwind.c \
-       gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
+       gdbarch.c arch-utils.c gdb_bfd.c gdb_obstack.c \
+       gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
        go-exp.y go-lang.c go-typeprint.c go-valprint.c \
        inf-loop.c \
        infcall.c \
        infcmd.c inflow.c infrun.c \
        inline-frame.c \
        interps.c \
-       jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
-       language.c linespec.c \
+       language.c linespec.c location.c minidebug.c \
        m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \
        macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \
        mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c memory-map.c \
        memrange.c mi/mi-common.c \
-       objc-exp.y objc-lang.c \
+       namespace.c \
+       objc-lang.c \
        objfiles.c osabi.c observer.c osdata.c \
        opencl-lang.c \
        p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
        proc-service.list progspace.c \
        prologue-value.c psymtab.c \
-       regcache.c reggroups.c remote.c remote-fileio.c reverse.c \
-       sentinel-frame.c \
-       serial.c ser-base.c ser-unix.c skip.c \
+       regcache.c reggroups.c remote.c remote-fileio.c remote-notif.c reverse.c \
+       rust-exp.y rust-lang.c \
+       selftest.c sentinel-frame.c \
+       serial.c ser-base.c ser-unix.c ser-event.c skip.c \
        solib.c solib-target.c source.c \
        stabsread.c stack.c probe.c stap-probe.c std-regs.c \
-       symfile.c symfile-mem.c symmisc.c symtab.c \
-       target.c target-descriptions.c target-memory.c \
-       thread.c top.c tracepoint.c \
+       symfile.c symfile-debug.c symfile-mem.c symmisc.c symtab.c \
+       target.c target-dcache.c target-descriptions.c target-memory.c \
+       tid-parse.c thread.c top.c tracepoint.c \
        trad-frame.c \
        tramp-frame.c \
        typeprint.c \
@@ -738,13 +883,19 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
        valarith.c valops.c valprint.c value.c varobj.c common/vec.c \
        xml-tdesc.c xml-support.c \
        inferior.c gdb_usleep.c \
-       record.c gcore.c \
+       record.c record-full.c gcore.c \
        jit.c \
        xml-syscall.c \
        annotate.c common/signals.c copying.c dfp.c gdb.c inf-child.c \
-       regset.c sol-thread.c windows-termcap.c \
-       common/common-utils.c common/xml-utils.c \
-       common/ptid.c common/buffer.c gdb-dlfcn.c common/agent.c
+       sol-thread.c stub-termcap.c \
+       common/gdb_vecs.c common/common-utils.c common/xml-utils.c \
+       common/ptid.c common/buffer.c gdb-dlfcn.c common/agent.c \
+       common/format.c common/filestuff.c btrace.c record-btrace.c ctf.c \
+       target/waitstatus.c common/print-utils.c common/rsp-low.c \
+       common/errors.c common/common-debug.c common/common-exceptions.c \
+       common/btrace-common.c common/fileio.c common/common-regcache.c \
+       common/signals-state-save-restore.c common/new-op.c \
+       $(SUBDIR_GCC_COMPILE_SRCS)
 
 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
 
@@ -754,79 +905,90 @@ LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
 # wrong if TAGS has files twice).  Because this is tricky to get
 # right, it is probably easiest just to list .h files here directly.
 
-HFILES_NO_SRCDIR = osf-share/cma_debug_client.h        \
-osf-share/HP800/cma_thread_io.h osf-share/cma_sequence.h \
-osf-share/cma_mutex.h osf-share/cma_semaphore_defs.h \
-osf-share/cma_list.h osf-share/cma_handle.h osf-share/cma_stack.h \
-osf-share/cma_util.h osf-share/RIOS/cma_thread_io.h \
-osf-share/cma_errors.h osf-share/cma_tcb_defs.h osf-share/cma_attr.h \
-osf-share/cma_stack_int.h osf-share/cma_init.h \
-osf-share/cma_deb_core.h osf-share/AT386/cma_thread_io.h \
-osf-share/cma_sched.h \
-common/gdb_signals.h common/gdb_thread_db.h common/i386-xstate.h \
-common/linux-ptrace.h \
-proc-utils.h arm-tdep.h ax-gdb.h ppcnbsd-tdep.h        \
-cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \
-exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h amd64bsd-nat.h \
+HFILES_NO_SRCDIR = \
+common/gdb_signals.h nat/gdb_thread_db.h common/gdb_vecs.h \
+common/x86-xstate.h nat/linux-ptrace.h nat/mips-linux-watch.h \
+proc-utils.h aarch64-tdep.h arc-tdep.h arm-tdep.h ax-gdb.h ppcfbsd-tdep.h \
+ppcnbsd-tdep.h cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \
+exec.h m32r-tdep.h osabi.h gdbcore.h x86bsd-nat.h \
 i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \
-ia64-tdep.h ada-lang.h ada-varobj.h varobj.h frv-tdep.h nto-tdep.h serial.h \
-c-lang.h d-lang.h golang.h frame.h event-loop.h block.h cli/cli-setshow.h \
-cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h cli/cli-utils.h \
-cli/cli-script.h macrotab.h symtab.h version.h \
-gnulib/import/string.in.h gnulib/import/str-two-way.h \
-gnulib/import/stdint.in.h remote.h gdb.h sparc-nat.h \
+ia64-tdep.h ada-lang.h varobj.h varobj-iter.h frv-tdep.h \
+nto-tdep.h serial.h \
+c-lang.h d-lang.h go-lang.h frame.h event-loop.h block.h cli/cli-setshow.h \
+cli/cli-decode.h cli/cli-cmds.h cli/cli-utils.h \
+cli/cli-script.h macrotab.h symtab.h common/version.h \
+compile/compile.h gnulib/import/string.in.h gnulib/import/str-two-way.h \
+gnulib/import/stdint.in.h remote.h remote-notif.h gdb.h sparc-nat.h \
 gdbthread.h dwarf2-frame.h dwarf2-frame-tailcall.h nbsd-nat.h dcache.h \
-amd64-nat.h s390-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \
-gdbarch.h bsd-uthread.h gdb_stat.h memory-map.h        memrange.h \
+amd64-nat.h s390-linux-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \
+gdbarch.h bsd-uthread.h memory-map.h memrange.h obsd-nat.h \
 mdebugread.h m88k-tdep.h stabsread.h hppa-linux-offsets.h linux-fork.h \
 ser-unix.h inf-ptrace.h terminal.h ui-out.h frame-base.h \
 f-lang.h dwarf2loc.h value.h sparc-tdep.h defs.h target-descriptions.h \
 objfiles.h common/vec.h disasm.h mips-tdep.h ser-base.h \
 gdb_curses.h bfd-target.h memattr.h inferior.h ax.h dummy-frame.h \
-inflow.h fbsd-nat.h ia64-libunwind-tdep.h completer.h inf-ttrace.h \
+inflow.h fbsd-nat.h ia64-libunwind-tdep.h completer.h \
 solib-target.h gdb_vfork.h alpha-tdep.h dwarf2expr.h \
-m2-lang.h stack.h charset.h cleanups.h addrmap.h command.h solist.h source.h \
-target.h prologue-value.h cp-abi.h tui/tui-hooks.h tui/tui.h \
+m2-lang.h stack.h charset.h addrmap.h command.h solist.h source.h \
+target.h target-dcache.h prologue-value.h cp-abi.h tui/tui-hooks.h tui/tui.h \
 tui/tui-file.h tui/tui-command.h tui/tui-disasm.h tui/tui-wingeneral.h \
 tui/tui-windata.h tui/tui-data.h tui/tui-win.h tui/tui-stack.h \
 tui/tui-winsource.h tui/tui-regs.h tui/tui-io.h tui/tui-layout.h \
-tui/tui-source.h xcoffsolib.h sol2-tdep.h gregset.h sh-tdep.h sh64-tdep.h \
-expression.h score-tdep.h gdb_select.h ser-tcp.h buildsym.h valprint.h \
-call-cmds.h typeprint.h mi/mi-getopt.h mi/mi-parse.h mi/mi-console.h \
+tui/tui-source.h sol2-tdep.h gregset.h sh-tdep.h sh64-tdep.h \
+expression.h score-tdep.h gdb_select.h ser-tcp.h \
+extension.h extension-priv.h nat/aarch64-linux-hw-point.h \
+build-id.h buildsym.h valprint.h nat/aarch64-linux.h \
+typeprint.h mi/mi-getopt.h mi/mi-parse.h mi/mi-console.h \
 mi/mi-out.h mi/mi-main.h mi/mi-common.h mi/mi-cmds.h linux-nat.h \
 complaints.h gdb_proc_service.h gdb_regex.h xtensa-tdep.h inf-loop.h \
-gdb_wait.h common/gdb_assert.h solib.h ppc-tdep.h cp-support.h glibc-tdep.h \
+common/gdb_wait.h common/gdb_assert.h solib.h ppc-tdep.h cp-support.h glibc-tdep.h \
 interps.h auxv.h gdbcmd.h tramp-frame.h mipsnbsd-tdep.h        \
-amd64-linux-tdep.h linespec.h i387-tdep.h mn10300-tdep.h \
-sparc64-tdep.h monitor.h ppcobsd-tdep.h srec.h solib-pa64.h \
+amd64-linux-tdep.h linespec.h location.h i387-tdep.h mn10300-tdep.h \
+sparc64-tdep.h ppcobsd-tdep.h \
 coff-pe-read.h parser-defs.h gdb_ptrace.h mips-linux-tdep.h \
-m68k-tdep.h spu-tdep.h jv-lang.h environ.h solib-irix.h amd64-tdep.h \
-doublest.h regset.h hppa-tdep.h ppc-linux-tdep.h rs6000-tdep.h \
-common/gdb_locale.h common/gdb_dirent.h arch-utils.h trad-frame.h gnu-nat.h \
+m68k-tdep.h spu-tdep.h environ.h amd64-tdep.h \
+doublest.h regset.h hppa-tdep.h ppc-linux-tdep.h ppc64-tdep.h \
+rs6000-tdep.h rs6000-aix-tdep.h \
+common/gdb_locale.h arch-utils.h trad-frame.h gnu-nat.h \
 language.h nbsd-tdep.h solib-svr4.h \
-macroexp.h ui-file.h regcache.h gdb_string.h tracepoint.h i386-tdep.h \
+macroexp.h ui-file.h regcache.h tracepoint.h tracefile.h i386-tdep.h \
 inf-child.h p-lang.h event-top.h gdbtypes.h user-regs.h \
-regformats/regdef.h config/alpha/nm-osf3.h  config/i386/nm-i386gnu.h \
+regformats/regdef.h config/i386/nm-i386gnu.h \
 config/i386/nm-fbsd.h \
 config/nm-nto.h config/sparc/nm-sol2.h config/nm-linux.h \
-config/rs6000/nm-rs6000.h top.h bsd-kvm.h gdb-stabs.h reggroups.h \
+top.h bsd-kvm.h gdb-stabs.h reggroups.h \
 annotate.h sim-regno.h dictionary.h dfp.h main.h frame-unwind.h        \
 remote-fileio.h i386-linux-tdep.h vax-tdep.h objc-lang.h \
 sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h \
 gdb_usleep.h jit.h xml-syscall.h microblaze-tdep.h \
-psymtab.h psympriv.h progspace.h bfin-tdep.h ia64-hpux-tdep.h \
+psymtab.h psympriv.h progspace.h bfin-tdep.h \
 amd64-darwin-tdep.h charset-list.h \
 config/djgpp/langinfo.h config/djgpp/nl_types.h darwin-nat.h \
 dicos-tdep.h filesystem.h gcore.h gdb_wchar.h hppabsd-tdep.h \
-i386-darwin-tdep.h i386-nat.h linux-record.h moxie-tdep.h \
+i386-darwin-tdep.h x86-nat.h linux-record.h moxie-tdep.h nios2-tdep.h \
+ft32-tdep.h nds32-tdep.h \
 osdata.h procfs.h python/py-event.h python/py-events.h python/py-stopevent.h \
 python/python-internal.h python/python.h ravenscar-thread.h record.h \
-solib-darwin.h solib-ia64-hpux.h solib-spu.h windows-nat.h xcoffread.h \
+record-full.h solib-aix.h \
+solib-darwin.h solib-spu.h windows-nat.h xcoffread.h \
 gnulib/import/extra/snippet/arg-nonnull.h gnulib/import/extra/snippet/c++defs.h \
 gnulib/import/extra/snippet/warn-on-use.h \
 gnulib/import/stddef.in.h gnulib/import/inttypes.in.h inline-frame.h skip.h \
 common/common-utils.h common/xml-utils.h common/buffer.h common/ptid.h \
-common/linux-osdata.h gdb-dlfcn.h auto-load.h probe.h stap-probe.h
+common/format.h common/host-defs.h utils.h common/queue.h \
+nat/linux-osdata.h gdb-dlfcn.h auto-load.h probe.h stap-probe.h \
+gdb_bfd.h sparc-ravenscar-thread.h ppc-ravenscar-thread.h nat/linux-btrace.h \
+nat/ppc-linux.h ctf.h nat/x86-cpuid.h nat/x86-gcc-cpuid.h target/resume.h \
+target/wait.h target/waitstatus.h nat/linux-nat.h nat/linux-waitpid.h \
+common/print-utils.h common/rsp-low.h nat/x86-dregs.h x86-linux-nat.h \
+i386-linux-nat.h common/common-defs.h common/errors.h common/common-types.h \
+common/common-debug.h common/cleanups.h common/gdb_setjmp.h \
+common/common-exceptions.h target/target.h common/symbol.h \
+common/common-regcache.h fbsd-tdep.h nat/linux-personality.h \
+common/fileio.h nat/x86-linux.h nat/x86-linux-dregs.h nat/amd64-linux-siginfo.h\
+nat/linux-namespaces.h arch/arm.h common/gdb_sys_time.h arch/aarch64-insn.h \
+tid-parse.h ser-event.h \
+common/signals-state-save-restore.h
 
 # Header files that already have srcdir in them, or which are in objdir.
 
@@ -836,8 +998,6 @@ HFILES_WITH_SRCDIR = ../bfd/bfd.h jit-reader.h
 # GDB "info" files, which should be included in their entirety
 INFOFILES = gdb.info*
 
-REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
-
 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
 # default their values the way we do for SER_HARDWIRE; in the future
 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
@@ -861,25 +1021,34 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
        auto-load.o auxv.o \
        agent.o \
        bfd-target.o \
-       blockframe.o breakpoint.o findvar.o regcache.o cleanups.o \
+       blockframe.o breakpoint.o break-catch-sig.o break-catch-throw.o \
+       break-catch-syscall.o \
+       findvar.o regcache.o cleanups.o \
        charset.o continuations.o corelow.o disasm.o dummy-frame.o dfp.o \
        source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \
-       block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o \
-       infcall.o \
+       block.o symtab.o psymtab.o symfile.o symfile-debug.o symmisc.o \
+       linespec.o dictionary.o namespace.o \
+       location.o infcall.o \
        infcmd.o infrun.o \
-       expprint.o environ.o stack.o thread.o \
+       expprint.o environ.o stack.o tid-parse.o thread.o thread-fsm.o \
        exceptions.o \
+       extension.o \
        filesystem.o \
+       filestuff.o \
        inf-child.o \
        interps.o \
+       minidebug.o \
        main.o \
        macrotab.o macrocmd.o macroexp.o macroscope.o \
        mi-common.o \
        event-loop.o event-top.o inf-loop.o completer.o \
-       gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
-       memattr.o mem-break.o target.o parse.o language.o buildsym.o \
+       gdbarch.o arch-utils.o gdbtypes.o gdb_bfd.o gdb_obstack.o \
+       osabi.o copying.o \
+       memattr.o mem-break.o target.o target-dcache.o parse.o language.o \
+       build-id.o buildsym.o \
        findcmd.o \
        std-regs.o \
+       signals-state-save-restore.o \
        signals.o \
        exec.o reverse.o \
        bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \
@@ -887,35 +1056,40 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
        dwarf2read.o mipsread.o stabsread.o corefile.o \
        dwarf2expr.o dwarf2loc.o dwarf2-frame.o dwarf2-frame-tailcall.o \
        ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o \
-       ada-tasks.o ada-varobj.o \
+       ada-tasks.o ada-varobj.o c-varobj.o \
        ui-out.o cli-out.o \
        varobj.o vec.o \
        go-lang.o go-valprint.o go-typeprint.o \
-       jv-lang.o jv-valprint.o jv-typeprint.o \
        m2-lang.o opencl-lang.o p-lang.o p-typeprint.o p-valprint.o \
-       sentinel-frame.o \
+       selftest.o sentinel-frame.o \
        complaints.o typeprint.o \
        ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \
        ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o \
        m2-valprint.o \
-       serial.o mdebugread.o top.o utils.o \
+       ser-event.o serial.o mdebugread.o top.o utils.o utils-selftests.o \
        ui-file.o \
        user-regs.o \
        frame.o frame-unwind.o doublest.o \
        frame-base.o \
        inline-frame.o \
        gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o \
-       cp-namespace.o \
-       reggroups.o regset.o \
+       cp-namespace.o d-namespace.o \
+       reggroups.o \
+       rust-lang.o \
        trad-frame.o \
        tramp-frame.o \
        solib.o solib-target.o \
        prologue-value.o memory-map.o memrange.o \
        xml-support.o xml-syscall.o xml-utils.o \
        target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \
-       inferior.o osdata.o gdb_usleep.o record.o gcore.o \
-       jit.o progspace.o skip.o probe.o \
-       common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o
+       inferior.o osdata.o gdb_usleep.o record.o record-full.o gcore.o \
+       gdb_vecs.o jit.o progspace.o skip.o probe.o \
+       common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o \
+       format.o registry.o btrace.o record-btrace.o waitstatus.o \
+       print-utils.o rsp-low.o errors.o common-debug.o debug.o \
+       common-exceptions.o btrace-common.o fileio.o \
+       common-regcache.o new-op.o \
+       $(SUBDIR_GCC_COMPILE_OBS)
 
 TSOBS = inflow.o
 
@@ -931,17 +1105,13 @@ REQUIRED_SUBDIRS = doc | testsuite | $(GNULIB_BUILDDIR) | data-directory
 # For now, shortcut the "configure GDB for fewer languages" stuff.
 YYFILES = c-exp.c \
        cp-name-parser.c \
-       objc-exp.c \
        ada-lex.c \
        ada-exp.c \
-       jv-exp.c \
-       f-exp.c go-exp.c m2-exp.c p-exp.c
+       d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
 YYOBJ = c-exp.o \
        cp-name-parser.o \
-       objc-exp.o \
        ada-exp.o \
-       jv-exp.o \
-       f-exp.o go-exp.o m2-exp.o p-exp.o
+       d-exp.o f-exp.o go-exp.o m2-exp.o p-exp.o rust-exp.o
 
 # Things which need to be built when making a distribution.
 
@@ -950,7 +1120,7 @@ DISTSTUFF = $(YYFILES)
 
 # All generated files which can be included by another file.
 generated_files = config.h observer.h observer.inc ada-lex.c jit-reader.h \
-       $(GNULIB_H) $(NAT_GENERATED_FILES)
+       $(GNULIB_H) $(NAT_GENERATED_FILES) gcore
 
 .c.o:
        $(COMPILE) $<
@@ -971,6 +1141,30 @@ check: force
          $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
        else true; fi
 
+check-perf: force
+       @if [ -f testsuite/Makefile ]; then \
+         rootme=`pwd`; export rootme; \
+         rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
+         cd testsuite; \
+         $(MAKE) $(TARGET_FLAGS_TO_PASS) check-perf; \
+       else true; fi
+
+check-read1: force
+       @if [ -f testsuite/Makefile ]; then \
+         rootme=`pwd`; export rootme; \
+         rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
+         cd testsuite; \
+         $(MAKE) $(TARGET_FLAGS_TO_PASS) check-read1; \
+       else true; fi
+
+check-parallel: force
+       @if [ -f testsuite/Makefile ]; then \
+         rootme=`pwd`; export rootme; \
+         rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
+         cd testsuite; \
+         $(MAKE) $(TARGET_FLAGS_TO_PASS) check-parallel; \
+       else true; fi
+
 # The idea is to parallelize testing of multilibs, for example:
 #   make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
 # will run 3 concurrent sessions of check, eventually testing all 10
@@ -1002,14 +1196,31 @@ check//%: force
            "$$target"; \
        else true; fi
 
+# The set of headers checked by 'check-headers' by default.
+CHECK_HEADERS = $(HFILES_NO_SRCDIR)
+
+# Try to compile each header in isolation, thus ensuring headers are
+# self-contained.
+#
+# Defaults to checking all $HFILES_NO_SRCDIR headers.
+#
+# Do:
+#
+#    make check-headers CHECK_HEADERS="header.h list.h"
+#
+# to check specific headers.
+#
+check-headers:
+       @echo Checking headers.
+       for i in $(CHECK_HEADERS) ; do \
+               $(CC) -x c -c -fsyntax-only $(INTERNAL_CFLAGS) \
+                       -include defs.h $(srcdir)/$$i ; \
+       done
+.PHONY: check-headers
+
 info install-info clean-info dvi pdf install-pdf html install-html: force
        @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
 
-gdb.z:gdb.1
-       nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
-       pack gdb.t ; rm -f gdb.t
-       mv gdb.t.z gdb.z
-
 # Traditionally "install" depends on "all".  But it may be useful
 # not to; for example, if the user has made some trivial change to a
 # source file and doesn't care about rebuilding or just wants to save the
@@ -1029,14 +1240,32 @@ install-only: $(CONFIG_INSTALL)
                $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
                $(INSTALL_PROGRAM) gdb$(EXEEXT) \
                        $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
-               $(SHELL) $(srcdir)/../mkinstalldirs \
-                       $(DESTDIR)$(man1dir) ; \
-               $(INSTALL_DATA) $(srcdir)/gdb.1 \
-                       $(DESTDIR)$(man1dir)/$$transformed_name.1 ; \
                $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
                $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
+       if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
+       then \
+         transformed_name=`t='$(program_transform_name)'; \
+                           echo gcore | sed -e "$$t"` ; \
+                 if test "x$$transformed_name" = x; then \
+                   transformed_name=gcore ; \
+                 else \
+                   true ; \
+                 fi ; \
+                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
+                 $(INSTALL_SCRIPT) gcore \
+                         $(DESTDIR)$(bindir)/$$transformed_name; \
+       fi
        @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
 
+install-strip:
+       $(MAKE) $(FLAGS_TO_PASS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+         install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
+         `test -z '$(STRIP)' || \
+           echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install-only
+
+install-guile:
+       $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/guile/gdb
+
 install-python:
        $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
 
@@ -1050,6 +1279,17 @@ uninstall: force $(CONFIG_UNINSTALL)
                fi ; \
                rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
                      $(DESTDIR)$(man1dir)/$$transformed_name.1
+       if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
+       then \
+         transformed_name=`t='$(program_transform_name)'; \
+                           echo gcore | sed -e "$$t"` ; \
+                 if test "x$$transformed_name" = x; then \
+                   transformed_name=gcore ; \
+                 else \
+                   true ; \
+                 fi ; \
+                 rm -f $(DESTDIR)$(bindir)/$$transformed_name; \
+       fi
        @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
 
 # The C++ name parser can be built standalone for testing.
@@ -1098,7 +1338,7 @@ test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
 # duplicates.  Files in the gdb/ directory can end up appearing in
 # COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
 
-INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS)
+INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS) $(SUBDIR_GCC_COMPILE_SRCS)
 init.c: $(INIT_FILES)
        @echo Making init.c
        @rm -f init.c-tmp init.l-tmp
@@ -1120,6 +1360,7 @@ init.c: $(INIT_FILES)
            -e '/version.[co]$$/d' \
            -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
            -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
+           -e 's/-exp\.o$$/-exp.y/' \
            -e 's/\.[co]$$/.c/' \
            -e 's,signals\.c,common/signals\.c,' \
            -e 's|^\([^  /][^     ]*\)|$(srcdir)/\1|g' | \
@@ -1135,7 +1376,7 @@ init.c: $(INIT_FILES)
        @echo '/* Do not modify this file.  */' >>init.c-tmp
        @echo '/* It is created automatically by the Makefile.  */'>>init.c-tmp
        @echo '#include "defs.h"      /* For initialize_file_ftype.  */' >>init.c-tmp
-       @echo '#include "call-cmds.h" /* For initialize_all_files.  */' >>init.c-tmp
+       @echo 'extern void initialize_all_files(void);' >>init.c-tmp
        @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
        @echo 'void' >>init.c-tmp
        @echo 'initialize_all_files (void)' >>init.c-tmp
@@ -1194,7 +1435,7 @@ gdb1$(EXEEXT): gdb$(EXEEXT)
 GDB_NM_FILE = @GDB_NM_FILE@
 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
        @echo Making TAGS
-       @etags $(srcdir)/$(GDB_NM_FILE) \
+       etags `(test -n "$(GDB_NM_FILE)" && echo "$(srcdir)/$(GDB_NM_FILE)")` \
        `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
                echo $(srcdir)/$$i ; \
        done ; for i in $(TAGFILES_WITH_SRCDIR); do \
@@ -1241,9 +1482,7 @@ local-maintainer-clean:
        rm -f c-exp.c \
                cp-name-parser.c \
                ada-lex.c ada-exp.c \
-               objc-exp.c \
-               jv-exp.tab \
-               f-exp.c go-exp.c m2-exp.c p-exp.c
+               d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
        rm -f TAGS $(INFOFILES)
        rm -f $(YYFILES)
        rm -f nm.h config.status
@@ -1292,9 +1531,16 @@ data-directory/Makefile: data-directory/Makefile.in config.status @frags@
          CONFIG_LINKS= \
          $(SHELL) config.status
 
+.PHONY: run
+run: Makefile
+       ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS)
+
 jit-reader.h: $(srcdir)/jit-reader.in
        $(SHELL) config.status $@
 
+gcore: $(srcdir)/gcore.in
+       $(SHELL) config.status $@
+
 config.h: stamp-h ; @true
 stamp-h: $(srcdir)/config.in config.status
        CONFIG_HEADERS=config.h:config.in \
@@ -1303,20 +1549,24 @@ stamp-h: $(srcdir)/config.in config.status
          CONFIG_LINKS= \
          $(SHELL) config.status
 
-config.status: $(srcdir)/configure configure.tgt configure.host
+config.status: $(srcdir)/configure configure.tgt configure.host ../bfd/development.sh
        $(SHELL) config.status --recheck
 
 ACLOCAL = aclocal
 ACLOCAL_AMFLAGS = -I ../config
+
+# Keep these in sync with the includes in acinclude.m4.
 aclocal_m4_deps = \
        configure.ac \
        acx_configure_dir.m4 \
-       ../config/extensions.m4 \
-       ../config/lead-dot.m4 \
-       ../config/proginstall.m4 \
+       libmcheck.m4 \
+       transform.m4 \
        ../bfd/bfd.m4 \
        ../config/acinclude.m4 \
+       ../config/plugins.m4 \
+       ../config/lead-dot.m4 \
        ../config/override.m4 \
+       ../config/largefile.m4 \
        ../config/gettext-sister.m4 \
        ../config/lib-ld.m4 \
        ../config/lib-prefix.m4 \
@@ -1325,7 +1575,8 @@ aclocal_m4_deps = \
        ../config/tcl.m4 \
        ../config/depstand.m4 \
        ../config/lcmessage.m4 \
-       ../config/codeset.m4
+       ../config/codeset.m4 \
+       ../config/zlib.m4
 
 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
        cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
@@ -1373,13 +1624,9 @@ $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copy
                < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
        mv $(srcdir)/copying.tmp $(srcdir)/copying.c
 
-version.c: Makefile version.in
-       rm -f version.c-tmp version.c
-       echo '#include "version.h"' >> version.c-tmp
-       echo 'const char version[] = "'"`sed q ${srcdir}/version.in`"'";' >> version.c-tmp
-       echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
-       echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp
-       mv version.c-tmp version.c
+version.c: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/common/create-version.sh
+       $(SHELL) $(srcdir)/common/create-version.sh $(srcdir) \
+           $(host_alias) $(target_alias) version.c
 
 observer.h: observer.sh doc/observer.texi
        ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
@@ -1408,11 +1655,14 @@ force_update:
 MAKEOVERRIDES=
 
 ALLDEPFILES = \
+       aarch64-tdep.c aarch64-linux-tdep.c aarch64-newlib-tdep.c \
+       aarch64-linux-nat.c \
        aix-thread.c \
-       alpha-nat.c alphabsd-nat.c alpha-linux-nat.c \
+       alphabsd-nat.c alpha-linux-nat.c \
        alpha-tdep.c alpha-mdebug-tdep.c \
-       alpha-linux-tdep.c alpha-osf1-tdep.c \
+       alpha-linux-tdep.c \
        alphabsd-tdep.c alphafbsd-tdep.c alphanbsd-tdep.c alphaobsd-tdep.c \
+       arc-tdep.c \
        amd64-nat.c amd64-tdep.c \
        amd64bsd-nat.c amd64fbsd-nat.c amd64fbsd-tdep.c \
        amd64nbsd-nat.c amd64nbsd-tdep.c \
@@ -1421,7 +1671,9 @@ ALLDEPFILES = \
        amd64-dicos-tdep.c \
        amd64-linux-nat.c amd64-linux-tdep.c \
        amd64-sol2-tdep.c \
-       arm-linux-nat.c arm-linux-tdep.c arm-symbian-tdep.c arm-tdep.c \
+       arm.c arm-get-next-pcs.c \
+       arm-linux.c arm-linux-nat.c arm-linux-tdep.c \
+       arm-symbian-tdep.c arm-tdep.c \
        armnbsd-nat.c armbsd-tdep.c armnbsd-tdep.c armobsd-tdep.c \
        avr-tdep.c \
        bfin-linux-tdep.c bfin-tdep.c \
@@ -1430,14 +1682,16 @@ ALLDEPFILES = \
        dcache.c dicos-tdep.c darwin-nat.c \
        exec.c \
        fbsd-nat.c \
+       fbsd-tdep.c \
        fork-child.c \
+       ft32-tdep.c \
        glibc-tdep.c \
        go32-nat.c h8300-tdep.c \
-       hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \
+       hppa-tdep.c \
        hppa-linux-tdep.c hppa-linux-nat.c \
-       hppabsd-nat.c hppabsd-tdep.c \
-       hppaobsd-tdep.c \
+       hppabsd-tdep.c \
        hppanbsd-nat.c hppanbsd-tdep.c \
+       hppaobsd-nat.c hppaobsd-tdep.c \
        i386-tdep.c i386-linux-nat.c \
        i386v4-nat.c i386-cygwin-tdep.c \
        i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \
@@ -1445,13 +1699,11 @@ ALLDEPFILES = \
        i387-tdep.c \
        i386-darwin-tdep.c i386-darwin-nat.c \
        i386-dicos-tdep.c \
-       i386-linux-tdep.c i386-nat.c \
+       i386-linux-tdep.c x86-nat.c \
        i386-sol2-nat.c i386-sol2-tdep.c \
        i386gnu-nat.c i386gnu-tdep.c \
-       ia64-hpux-nat.c ia64-hpux-tdep.c \
        ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c ia64-vms-tdep.c \
-       inf-ptrace.c inf-ttrace.c \
-       irix5-nat.c \
+       inf-ptrace.c \
        ia64-libunwind-tdep.c \
        linux-fork.c \
        linux-tdep.c \
@@ -1465,43 +1717,49 @@ ALLDEPFILES = \
        m68klinux-nat.c m68klinux-tdep.c \
        m88k-tdep.c m88kbsd-nat.c \
        microblaze-tdep.c microblaze-linux-tdep.c \
-       mingw-hdep.c \
+       mingw-hdep.c common/mingw-strerror.c \
        mips-linux-nat.c mips-linux-tdep.c \
-       mips-irix-tdep.c \
+       mips-sde-tdep.c \
        mips-tdep.c \
        mipsnbsd-nat.c mipsnbsd-tdep.c \
        mips64obsd-nat.c mips64obsd-tdep.c \
-       nbsd-nat.c nbsd-tdep.c obsd-tdep.c \
-       solib-osf.c \
-       somread.c solib-som.c \
-       posix-hdep.c \
-       ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \
+       msp430-tdep.c \
+       nds32-tdep.c \
+       nios2-tdep.c nios2-linux-tdep.c \
+       nbsd-nat.c nbsd-tdep.c obsd-nat.c obsd-tdep.c \
+       posix-hdep.c common/posix-strerror.c \
+       ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c ppc64-tdep.c \
+       ppcfbsd-nat.c ppcfbsd-tdep.c \
        ppcnbsd-nat.c ppcnbsd-tdep.c \
        ppcobsd-nat.c ppcobsd-tdep.c \
        procfs.c \
-       remote-m32r-sdi.c remote-mips.c \
+       ravenscar-thread.c \
        remote-sim.c \
        dcache.c \
        rl78-tdep.c \
-       rs6000-nat.c rs6000-tdep.c \
+       rs6000-nat.c rs6000-tdep.c solib-aix.c ppc-ravenscar-thread.c \
+       rs6000-lynx178-tdep.c \
        rx-tdep.c \
-       s390-tdep.c s390-nat.c \
+       s390-linux-tdep.c s390-linux-nat.c \
        score-tdep.c \
        ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \
        sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \
        sol2-tdep.c \
-       solib-irix.c solib-svr4.c solib-sunos.c \
+       solib-svr4.c \
        sparc-linux-nat.c sparc-linux-tdep.c \
        sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-sol2-tdep.c \
        sparc-nat.c sparc-tdep.c sparc64-linux-nat.c sparc64-linux-tdep.c \
        sparc64-nat.c sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \
-       sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \
+       sparc64nbsd-nat.c sparc64nbsd-tdep.c \
+       sparc64obsd-nat.c sparc64obsd-tdep.c \
        sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \
+       sparc-ravenscar-thread.c \
        spu-linux-nat.c spu-tdep.c spu-multiarch.c solib-spu.c \
+       tilegx-linux-nat.c tilegx-tdep.c tilegx-linux-tdep.c \
        v850-tdep.c \
-       vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
+       vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
        windows-nat.c windows-tdep.c \
-       xcoffread.c xcoffsolib.c \
+       xcoffread.c \
        xstormy16-tdep.c \
        xtensa-tdep.c xtensa-config.c \
        xtensa-linux-tdep.c xtensa-linux-nat.c xtensa-xtregs.c
@@ -1527,6 +1785,17 @@ printcmd.o: $(srcdir)/printcmd.c
                $(COMPILE.post) $(srcdir)/printcmd.c
        $(POSTCOMPILE)
 
+# ada-exp.c can appear in srcdir, for releases; or in ., for
+# development builds.
+ADA_EXP_C = `if test -f ada-exp.c; then echo ada-exp.c; else echo $(srcdir)/ada-exp.c; fi`
+
+# Some versions of flex give output that triggers
+# -Wold-style-definition.
+ada-exp.o: ada-exp.c
+       $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_DEFS) \
+               $(COMPILE.post) $(ADA_EXP_C)
+       $(POSTCOMPILE)
+
 # Message files.  Based on code in gcc/Makefile.in.
 
 # Rules for generating translated message descriptions.  Disabled by
@@ -1625,7 +1894,7 @@ po/$(PACKAGE).pot: force
             -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
             -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
             -e '/^#line.*y.tab.c/d' \
-            -e "s/^\(#line.*\)`basename $<`/\1`echo $<|sed 's/\//\\\\\//g'`/" \
+            -e 's/YY_NULL/YY_NULLPTR/g' \
          < $@.tmp > $@
        rm -f $@.tmp
 .l.c:
@@ -1704,6 +1973,39 @@ cli-utils.o: $(srcdir)/cli/cli-utils.c
        $(COMPILE) $(srcdir)/cli/cli-utils.c
        $(POSTCOMPILE)
 
+# GCC Compile support dependencies
+#
+# Need to explicitly specify the compile rule as make will do nothing
+# or try to compile the object file into the sub-directory.
+
+compile.o: $(srcdir)/compile/compile.c
+       $(COMPILE) $(srcdir)/compile/compile.c
+       $(POSTCOMPILE)
+
+compile-c-types.o: $(srcdir)/compile/compile-c-types.c
+       $(COMPILE) $(srcdir)/compile/compile-c-types.c
+       $(POSTCOMPILE)
+
+compile-c-symbols.o: $(srcdir)/compile/compile-c-symbols.c
+       $(COMPILE) $(srcdir)/compile/compile-c-symbols.c
+       $(POSTCOMPILE)
+
+compile-object-load.o: $(srcdir)/compile/compile-object-load.c
+       $(COMPILE) $(srcdir)/compile/compile-object-load.c
+       $(POSTCOMPILE)
+
+compile-object-run.o: $(srcdir)/compile/compile-object-run.c
+       $(COMPILE) $(srcdir)/compile/compile-object-run.c
+       $(POSTCOMPILE)
+
+compile-loc2c.o: $(srcdir)/compile/compile-loc2c.c
+       $(COMPILE) $(srcdir)/compile/compile-loc2c.c
+       $(POSTCOMPILE)
+
+compile-c-support.o: $(srcdir)/compile/compile-c-support.c
+       $(COMPILE) $(srcdir)/compile/compile-c-support.c
+       $(POSTCOMPILE)
+
 
 #
 # GDBTK sub-directory
@@ -1825,6 +2127,10 @@ mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c
        $(COMPILE) $(srcdir)/mi/mi-cmd-break.c
        $(POSTCOMPILE)
 
+mi-cmd-catch.o: $(srcdir)/mi/mi-cmd-catch.c
+       $(COMPILE) $(srcdir)/mi/mi-cmd-catch.c
+       $(POSTCOMPILE)
+
 mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c
        $(COMPILE) $(srcdir)/mi/mi-cmd-disas.c
        $(POSTCOMPILE)
@@ -1902,6 +2208,10 @@ common-utils.o: ${srcdir}/common/common-utils.c
        $(COMPILE) $(srcdir)/common/common-utils.c
        $(POSTCOMPILE)
 
+gdb_vecs.o: ${srcdir}/common/gdb_vecs.c
+       $(COMPILE) $(srcdir)/common/gdb_vecs.c
+       $(POSTCOMPILE)
+
 xml-utils.o: ${srcdir}/common/xml-utils.c
        $(COMPILE) $(srcdir)/common/xml-utils.c
        $(POSTCOMPILE)
@@ -1914,16 +2224,12 @@ buffer.o: ${srcdir}/common/buffer.c
        $(COMPILE) $(srcdir)/common/buffer.c
        $(POSTCOMPILE)
 
-linux-osdata.o: ${srcdir}/common/linux-osdata.c
-       $(COMPILE) $(srcdir)/common/linux-osdata.c
+filestuff.o: $(srcdir)/common/filestuff.c
+       $(COMPILE) $(srcdir)/common/filestuff.c
        $(POSTCOMPILE)
 
-linux-procfs.o: $(srcdir)/common/linux-procfs.c
-       $(COMPILE) $(srcdir)/common/linux-procfs.c
-       $(POSTCOMPILE)
-
-linux-ptrace.o: $(srcdir)/common/linux-ptrace.c
-       $(COMPILE) $(srcdir)/common/linux-ptrace.c
+format.o: ${srcdir}/common/format.c
+       $(COMPILE) $(srcdir)/common/format.c
        $(POSTCOMPILE)
 
 common-agent.o: $(srcdir)/common/agent.c
@@ -1934,6 +2240,160 @@ vec.o: ${srcdir}/common/vec.c
        $(COMPILE) $(srcdir)/common/vec.c
        $(POSTCOMPILE)
 
+print-utils.o: ${srcdir}/common/print-utils.c
+       $(COMPILE) $(srcdir)/common/print-utils.c
+       $(POSTCOMPILE)
+
+rsp-low.o: ${srcdir}/common/rsp-low.c
+       $(COMPILE) $(srcdir)/common/rsp-low.c
+       $(POSTCOMPILE)
+
+errors.o: ${srcdir}/common/errors.c
+       $(COMPILE) $(srcdir)/common/errors.c
+       $(POSTCOMPILE)
+
+common-debug.o: ${srcdir}/common/common-debug.c
+       $(COMPILE) $(srcdir)/common/common-debug.c
+       $(POSTCOMPILE)
+
+cleanups.o: ${srcdir}/common/cleanups.c
+       $(COMPILE) $(srcdir)/common/cleanups.c
+       $(POSTCOMPILE)
+
+common-exceptions.o: ${srcdir}/common/common-exceptions.c
+       $(COMPILE) $(srcdir)/common/common-exceptions.c
+       $(POSTCOMPILE)
+
+posix-strerror.o: ${srcdir}/common/posix-strerror.c
+       $(COMPILE) $(srcdir)/common/posix-strerror.c
+       $(POSTCOMPILE)
+
+mingw-strerror.o: ${srcdir}/common/mingw-strerror.c
+       $(COMPILE) $(srcdir)/common/mingw-strerror.c
+       $(POSTCOMPILE)
+
+btrace-common.o: ${srcdir}/common/btrace-common.c
+       $(COMPILE) $(srcdir)/common/btrace-common.c
+       $(POSTCOMPILE)
+
+fileio.o: ${srcdir}/common/fileio.c
+       $(COMPILE) $(srcdir)/common/fileio.c
+       $(POSTCOMPILE)
+
+common-regcache.o: ${srcdir}/common/common-regcache.c
+       $(COMPILE) $(srcdir)/common/common-regcache.c
+       $(POSTCOMPILE)
+
+signals-state-save-restore.o: $(srcdir)/common/signals-state-save-restore.c
+       $(COMPILE) $(srcdir)/common/signals-state-save-restore.c
+       $(POSTCOMPILE)
+
+new-op.o: ${srcdir}/common/new-op.c
+       $(COMPILE) $(srcdir)/common/new-op.c
+       $(POSTCOMPILE)
+
+#
+# gdb/target/ dependencies
+#
+# Need to explicitly specify the compile rule as make will do nothing
+# or try to compile the object file into the sub-directory.
+
+waitstatus.o: ${srcdir}/target/waitstatus.c
+       $(COMPILE) $(srcdir)/target/waitstatus.c
+       $(POSTCOMPILE)
+
+#
+# gdb/arch/ dependencies
+#
+# Need to explicitly specify the compile rule as make will do nothing
+# or try to compile the object file into the sub-directory.
+
+arm.o: ${srcdir}/arch/arm.c
+       $(COMPILE) $(srcdir)/arch/arm.c
+       $(POSTCOMPILE)
+
+arm-linux.o: ${srcdir}/arch/arm-linux.c
+       $(COMPILE) $(srcdir)/arch/arm-linux.c
+       $(POSTCOMPILE)
+
+arm-get-next-pcs.o: ${srcdir}/arch/arm-get-next-pcs.c
+       $(COMPILE) $(srcdir)/arch/arm-get-next-pcs.c
+       $(POSTCOMPILE)
+
+# gdb/nat/ dependencies
+#
+# Need to explicitly specify the compile rule as make will do nothing
+# or try to compile the object file into the sub-directory.
+
+x86-dregs.o: ${srcdir}/nat/x86-dregs.c
+       $(COMPILE) $(srcdir)/nat/x86-dregs.c
+       $(POSTCOMPILE)
+
+linux-btrace.o: ${srcdir}/nat/linux-btrace.c
+       $(COMPILE) $(srcdir)/nat/linux-btrace.c
+       $(POSTCOMPILE)
+
+linux-osdata.o: ${srcdir}/nat/linux-osdata.c
+       $(COMPILE) $(srcdir)/nat/linux-osdata.c
+       $(POSTCOMPILE)
+
+linux-procfs.o: $(srcdir)/nat/linux-procfs.c
+       $(COMPILE) $(srcdir)/nat/linux-procfs.c
+       $(POSTCOMPILE)
+
+linux-ptrace.o: $(srcdir)/nat/linux-ptrace.c
+       $(COMPILE) $(srcdir)/nat/linux-ptrace.c
+       $(POSTCOMPILE)
+
+linux-waitpid.o: ${srcdir}/nat/linux-waitpid.c
+       $(COMPILE) $(srcdir)/nat/linux-waitpid.c
+       $(POSTCOMPILE)
+
+mips-linux-watch.o: ${srcdir}/nat/mips-linux-watch.c
+       $(COMPILE) $(srcdir)/nat/mips-linux-watch.c
+       $(POSTCOMPILE)
+
+ppc-linux.o: ${srcdir}/nat/ppc-linux.c
+       $(COMPILE) $(srcdir)/nat/ppc-linux.c
+       $(POSTCOMPILE)
+
+linux-personality.o: ${srcdir}/nat/linux-personality.c
+       $(COMPILE) $(srcdir)/nat/linux-personality.c
+       $(POSTCOMPILE)
+
+x86-linux.o: ${srcdir}/nat/x86-linux.c
+       $(COMPILE) $(srcdir)/nat/x86-linux.c
+       $(POSTCOMPILE)
+
+x86-linux-dregs.o: ${srcdir}/nat/x86-linux-dregs.c
+       $(COMPILE) $(srcdir)/nat/x86-linux-dregs.c
+       $(POSTCOMPILE)
+
+amd64-linux-siginfo.o: ${srcdir}/nat/amd64-linux-siginfo.c
+       $(COMPILE) $(srcdir)/nat/amd64-linux-siginfo.c
+       $(POSTCOMPILE)
+
+linux-namespaces.o: ${srcdir}/nat/linux-namespaces.c
+       $(COMPILE) $(srcdir)/nat/linux-namespaces.c
+       $(POSTCOMPILE)
+
+aarch64-linux-hw-point.o: ${srcdir}/nat/aarch64-linux-hw-point.c
+       $(COMPILE) $(srcdir)/nat/aarch64-linux-hw-point.c
+       $(POSTCOMPILE)
+
+aarch64-linux.o: ${srcdir}/nat/aarch64-linux.c
+       $(COMPILE) $(srcdir)/nat/aarch64-linux.c
+       $(POSTCOMPILE)
+
+# gdb/arch/ dependencies
+#
+# Need to explicitly specify the compile rule as make will do nothing
+# or try to compile the object file into the sub-directory.
+
+aarch64-insn.o: ${srcdir}/arch/aarch64-insn.c
+       $(COMPILE) $(srcdir)/arch/aarch64-insn.c
+       $(POSTCOMPILE)
+
 #
 # gdb/tui/ dependencies
 #
@@ -2008,7 +2468,111 @@ tui-winsource.o: $(srcdir)/tui/tui-winsource.c
        $(COMPILE) $(srcdir)/tui/tui-winsource.c
        $(POSTCOMPILE)
 
+# gdb/guile dependencies
 #
+# Need to explicitly specify the compile rule as make will do nothing
+# or try to compile the object file into the sub-directory.
+
+guile.o: $(srcdir)/guile/guile.c
+       $(COMPILE) $(srcdir)/guile/guile.c
+       $(POSTCOMPILE)
+
+scm-arch.o: $(srcdir)/guile/scm-arch.c
+       $(COMPILE) $(srcdir)/guile/scm-arch.c
+       $(POSTCOMPILE)
+
+scm-auto-load.o: $(srcdir)/guile/scm-auto-load.c
+       $(COMPILE) $(srcdir)/guile/scm-auto-load.c
+       $(POSTCOMPILE)
+
+scm-block.o: $(srcdir)/guile/scm-block.c
+       $(COMPILE) $(srcdir)/guile/scm-block.c
+       $(POSTCOMPILE)
+
+scm-breakpoint.o: $(srcdir)/guile/scm-breakpoint.c
+       $(COMPILE) $(srcdir)/guile/scm-breakpoint.c
+       $(POSTCOMPILE)
+
+scm-cmd.o: $(srcdir)/guile/scm-cmd.c
+       $(COMPILE) $(srcdir)/guile/scm-cmd.c
+       $(POSTCOMPILE)
+
+scm-disasm.o: $(srcdir)/guile/scm-disasm.c
+       $(COMPILE) $(srcdir)/guile/scm-disasm.c
+       $(POSTCOMPILE)
+
+scm-exception.o: $(srcdir)/guile/scm-exception.c
+       $(COMPILE) $(srcdir)/guile/scm-exception.c
+       $(POSTCOMPILE)
+
+scm-frame.o: $(srcdir)/guile/scm-frame.c
+       $(COMPILE) $(srcdir)/guile/scm-frame.c
+       $(POSTCOMPILE)
+
+scm-gsmob.o: $(srcdir)/guile/scm-gsmob.c
+       $(COMPILE) $(srcdir)/guile/scm-gsmob.c
+       $(POSTCOMPILE)
+
+scm-iterator.o: $(srcdir)/guile/scm-iterator.c
+       $(COMPILE) $(srcdir)/guile/scm-iterator.c
+       $(POSTCOMPILE)
+
+scm-lazy-string.o: $(srcdir)/guile/scm-lazy-string.c
+       $(COMPILE) $(srcdir)/guile/scm-lazy-string.c
+       $(POSTCOMPILE)
+
+scm-math.o: $(srcdir)/guile/scm-math.c
+       $(COMPILE) $(srcdir)/guile/scm-math.c
+       $(POSTCOMPILE)
+
+scm-objfile.o: $(srcdir)/guile/scm-objfile.c
+       $(COMPILE) $(srcdir)/guile/scm-objfile.c
+       $(POSTCOMPILE)
+
+scm-param.o: $(srcdir)/guile/scm-param.c
+       $(COMPILE) $(srcdir)/guile/scm-param.c
+       $(POSTCOMPILE)
+
+scm-ports.o: $(srcdir)/guile/scm-ports.c
+       $(COMPILE) $(srcdir)/guile/scm-ports.c
+       $(POSTCOMPILE)
+
+scm-pretty-print.o: $(srcdir)/guile/scm-pretty-print.c
+       $(COMPILE) $(srcdir)/guile/scm-pretty-print.c
+       $(POSTCOMPILE)
+
+scm-progspace.o: $(srcdir)/guile/scm-progspace.c
+       $(COMPILE) $(srcdir)/guile/scm-progspace.c
+       $(POSTCOMPILE)
+
+scm-safe-call.o: $(srcdir)/guile/scm-safe-call.c
+       $(COMPILE) $(srcdir)/guile/scm-safe-call.c
+       $(POSTCOMPILE)
+
+scm-string.o: $(srcdir)/guile/scm-string.c
+       $(COMPILE) $(srcdir)/guile/scm-string.c
+       $(POSTCOMPILE)
+
+scm-symbol.o: $(srcdir)/guile/scm-symbol.c
+       $(COMPILE) $(srcdir)/guile/scm-symbol.c
+       $(POSTCOMPILE)
+
+scm-symtab.o: $(srcdir)/guile/scm-symtab.c
+       $(COMPILE) $(srcdir)/guile/scm-symtab.c
+       $(POSTCOMPILE)
+
+scm-type.o: $(srcdir)/guile/scm-type.c
+       $(COMPILE) $(srcdir)/guile/scm-type.c
+       $(POSTCOMPILE)
+
+scm-utils.o: $(srcdir)/guile/scm-utils.c
+       $(COMPILE) $(srcdir)/guile/scm-utils.c
+       $(POSTCOMPILE)
+
+scm-value.o: $(srcdir)/guile/scm-value.c
+       $(COMPILE) $(srcdir)/guile/scm-value.c
+       $(POSTCOMPILE)
+
 # gdb/python/ dependencies
 #
 # Need to explicitly specify the compile rule as make will do nothing
@@ -2021,6 +2585,10 @@ python.o: $(srcdir)/python/python.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/python.c
        $(POSTCOMPILE)
 
+py-arch.o: $(srcdir)/python/py-arch.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-arch.c
+       $(POSTCOMPILE)
+
 py-auto-load.o: $(srcdir)/python/py-auto-load.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-auto-load.c
        $(POSTCOMPILE)
@@ -2045,6 +2613,10 @@ py-continueevent.o: $(srcdir)/python/py-continueevent.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-continueevent.c
        $(POSTCOMPILE)
 
+py-xmethods.o: $(srcdir)/python/py-xmethods.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-xmethods.c
+       $(POSTCOMPILE)
+
 py-event.o: $(srcdir)/python/py-event.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-event.c
        $(POSTCOMPILE)
@@ -2069,14 +2641,26 @@ py-frame.o: $(srcdir)/python/py-frame.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-frame.c
        $(POSTCOMPILE)
 
+py-framefilter.o: $(srcdir)/python/py-framefilter.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-framefilter.c
+       $(POSTCOMPILE)
+
 py-function.o: $(srcdir)/python/py-function.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-function.c
        $(POSTCOMPILE)
 
+py-gdb-readline.o: $(srcdir)/python/py-gdb-readline.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-gdb-readline.c
+       $(POSTCOMPILE)
+
 py-inferior.o: $(srcdir)/python/py-inferior.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-inferior.c
        $(POSTCOMPILE)
 
+py-infevents.o: $(srcdir)/python/py-infevents.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-infevents.c
+       $(POSTCOMPILE)
+
 py-infthread.o: $(srcdir)/python/py-infthread.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-infthread.c
        $(POSTCOMPILE)
@@ -2085,6 +2669,10 @@ py-lazy-string.o: $(srcdir)/python/py-lazy-string.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-lazy-string.c
        $(POSTCOMPILE)
 
+py-linetable.o: $(srcdir)/python/py-linetable.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-linetable.c
+       $(POSTCOMPILE)
+
 py-newobjfileevent.o: $(srcdir)/python/py-newobjfileevent.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-newobjfileevent.c
        $(POSTCOMPILE)
@@ -2129,6 +2717,10 @@ py-type.o: $(srcdir)/python/py-type.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-type.c
        $(POSTCOMPILE)
 
+py-unwind.o: $(srcdir)/python/py-unwind.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-unwind.c
+       $(POSTCOMPILE)
+
 py-utils.o: $(srcdir)/python/py-utils.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-utils.c
        $(POSTCOMPILE)
@@ -2137,27 +2729,29 @@ py-value.o: $(srcdir)/python/py-value.c
        $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-value.c
        $(POSTCOMPILE)
 
+py-varobj.o: $(srcdir)/python/py-varobj.c
+       $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-varobj.c
+       $(POSTCOMPILE)
+
 #
-# Dependency tracking.  Most of this is conditional on GNU Make being
-# found by configure; if GNU Make is not found, we fall back to a
-# simpler scheme.
+# Dependency tracking.
 #
 
-@GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
+ifeq ($(DEPMODE),depmode=gcc3)
 # Note that we put the dependencies into a .Tpo file, then move them
 # into place if the compile succeeds.  We need this because gcc does
 # not atomically write the dependency output file.
-@GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
-@GMAKE_TRUE@   -MF $(DEPDIR)/$(basename $(@F)).Tpo
-@GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
-@GMAKE_TRUE@   $(DEPDIR)/$(basename $(@F)).Po
-@GMAKE_TRUE@else
-@GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
-@GMAKE_TRUE@   DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
+override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
+       -MF $(DEPDIR)/$(basename $(@F)).Tpo
+override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
+       $(DEPDIR)/$(basename $(@F)).Po
+else
+override COMPILE.pre = source='$<' object='$@' libtool=no \
+       DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
 # depcomp handles atomicity for us, so we don't need a postcompile
 # step.
-@GMAKE_TRUE@override POSTCOMPILE =
-@GMAKE_TRUE@endif
+override POSTCOMPILE =
+endif
 
 # A list of all the objects we might care about in this build, for
 # dependency tracking.
@@ -2167,13 +2761,13 @@ all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
 # Ensure that generated files are created early.  Use order-only
 # dependencies if available.  They require GNU make 3.80 or newer,
 # and the .VARIABLES variable was introduced at the same time.
-@GMAKE_TRUE@ifdef .VARIABLES
-@GMAKE_TRUE@$(all_object_files): | $(generated_files)
-@GMAKE_TRUE@else
+ifdef .VARIABLES
+$(all_object_files): | $(generated_files)
+else
 $(all_object_files) : $(generated_files)
-@GMAKE_TRUE@endif
+endif
 
 # Dependencies.
-@GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
+-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
 
 ### end of the gdb Makefile.in.
This page took 0.050349 seconds and 4 git commands to generate.