Introduce a serial interface for select'able events
[deliverable/binutils-gdb.git] / gdb / Makefile.in
index fbcdfb3e3c0376f8242cb19431d48908921d2f5f..2af78a5d27ea6e2fa495f43ab682ee43fdb36986 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1989-2014 Free Software Foundation, Inc.
+# Copyright (C) 1989-2016 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
@@ -79,12 +79,18 @@ MSGMERGE = msgmerge
 PACKAGE = @PACKAGE@
 CATALOGS = @CATALOGS@
 
+# The name of the compiler to use.
+COMPILER = @COMPILER@
+# Set to CFLAGS or CXXFLAGS, depending on compiler/language.
+COMPILER_CFLAGS = @COMPILER_CFLAGS@
+
 # If you are compiling with GCC, make sure that either 1) You have the
 # fixed include files where GCC can reach them, or 2) You use the
 # -traditional flag.  Otherwise the ioctl calls in inflow.c
 # will be incorrectly compiled.  The "fixincludes" script in the gcc
 # distribution will fix your include files up.
 CC=@CC@
+CXX=@CXX@
 
 # Dependency tracking information.
 DEPMODE = @CCDEPMODE@
@@ -93,7 +99,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 = $(COMPILER)
 COMPILE.post = -c -o $@
 COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
 POSTCOMPILE = @true
@@ -101,6 +107,7 @@ POSTCOMPILE = @true
 # Directory containing source files.
 srcdir = @srcdir@
 VPATH = @srcdir@
+top_srcdir = @top_srcdir@
 
 YACC=@YACC@
 
@@ -123,7 +130,7 @@ 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=$(COMPILER)
 
 # Where is our "include" directory?  Typically $(srcdir)/../include.
 # This is essentially the header file directory for the library
@@ -140,6 +147,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
@@ -163,6 +176,9 @@ LIBLZMA = @LIBLZMA@
 # 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)
@@ -180,6 +196,9 @@ 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@
 
@@ -280,6 +299,24 @@ 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 = \
@@ -361,6 +398,7 @@ SUBDIR_PYTHON_OBS = \
        py-function.o \
        py-gdb-readline.o \
        py-inferior.o \
+       py-infevents.o \
        py-infthread.o \
        py-lazy-string.o \
        py-linetable.o \
@@ -375,6 +413,7 @@ SUBDIR_PYTHON_OBS = \
        py-symtab.o \
        py-threadevent.o \
        py-type.o \
+       py-unwind.o \
        py-utils.o \
        py-value.o \
        py-varobj.o
@@ -399,6 +438,7 @@ SUBDIR_PYTHON_SRCS = \
        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 \
@@ -413,6 +453,7 @@ 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-varobj.c
@@ -512,9 +553,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
@@ -524,15 +566,10 @@ CFLAGS = @CFLAGS@
 # a bit the consequences by putting the Python includes last in the list.
 INTERNAL_CPPFLAGS = @CPPFLAGS@ @GUILE_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_CFLAGS is the aggregate of all other *CFLAGS macros.
 INTERNAL_CFLAGS_BASE = \
-       $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
-       $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
+       $(COMPILER_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)
 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
@@ -546,7 +583,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 = \
+       $(COMPILER_CFLAGS) $(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.
@@ -554,11 +593,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) \
+CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(ZLIB) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
        $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) \
        @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \
-       $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) \
-       $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU)
+       $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \
+       $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV)
 CDEPS = $(XM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
        $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
 
@@ -581,7 +620,7 @@ XMLFILES = $(srcdir)/features/gdb-target.dtd $(srcdir)/features/xinclude.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/btrace.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,
@@ -605,30 +644,33 @@ 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-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 \
+       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-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 \
@@ -643,7 +685,7 @@ 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 \
@@ -672,10 +714,8 @@ 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 \
@@ -741,19 +781,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`
 
@@ -792,14 +831,16 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
        bfd-target.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-exp.y d-lang.c d-support.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 \
@@ -815,11 +856,12 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
        inline-frame.c \
        interps.c \
        jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c jv-varobj.c \
-       language.c linespec.c minidebug.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 \
+       namespace.c \
        objc-lang.c \
        objfiles.c osabi.c observer.c osdata.c \
        opencl-lang.c \
@@ -828,12 +870,12 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
        prologue-value.c psymtab.c \
        regcache.c reggroups.c remote.c remote-fileio.c remote-notif.c reverse.c \
        sentinel-frame.c \
-       serial.c ser-base.c ser-unix.c skip.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-debug.c symfile-mem.c symmisc.c symtab.c \
        target.c target-dcache.c target-descriptions.c target-memory.c \
-       thread.c top.c tracepoint.c \
+       tid-parse.c thread.c top.c tracepoint.c \
        trad-frame.c \
        tramp-frame.c \
        typeprint.c \
@@ -846,12 +888,14 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
        jit.c \
        xml-syscall.c \
        annotate.c common/signals.c copying.c dfp.c gdb.c inf-child.c \
-       sol-thread.c windows-termcap.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/errors.c common/common-debug.c common/common-exceptions.c \
+       common/btrace-common.c common/fileio.c common/common-regcache.c \
+       $(SUBDIR_GCC_COMPILE_SRCS)
 
 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
 
@@ -863,17 +907,17 @@ LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
 
 HFILES_NO_SRCDIR = \
 common/gdb_signals.h nat/gdb_thread_db.h common/gdb_vecs.h \
-common/i386-xstate.h nat/linux-ptrace.h nat/mips-linux-watch.h \
+common/x86-xstate.h nat/linux-ptrace.h nat/mips-linux-watch.h \
 proc-utils.h aarch64-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 solib-som.h amd64bsd-nat.h \
+exec.h m32r-tdep.h osabi.h gdbcore.h amd64bsd-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 varobj-iter.h frv-tdep.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 \
-gnulib/import/string.in.h gnulib/import/str-two-way.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-linux-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \
@@ -883,7 +927,7 @@ 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 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 \
@@ -892,24 +936,24 @@ 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 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 \
-build-id.h buildsym.h valprint.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 \
 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 \
+m68k-tdep.h spu-tdep.h jv-lang.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 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 \
 top.h bsd-kvm.h gdb-stabs.h reggroups.h \
@@ -917,15 +961,16 @@ 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 nios2-tdep.h \
+i386-darwin-tdep.h x86-nat.h linux-record.h moxie-tdep.h nios2-tdep.h \
+ft32-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 \
 record-full.h solib-aix.h \
-solib-darwin.h solib-ia64-hpux.h solib-spu.h windows-nat.h xcoffread.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 \
@@ -933,12 +978,16 @@ common/common-utils.h common/xml-utils.h common/buffer.h common/ptid.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 \
-ctf.h nat/i386-cpuid.h nat/i386-gcc-cpuid.h target/resume.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/i386-dregs.h x86-linux-nat.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
+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
 
 # Header files that already have srcdir in them, or which are in objdir.
 
@@ -948,8 +997,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
@@ -974,14 +1021,15 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
        agent.o \
        bfd-target.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 symfile-debug.o symmisc.o \
-       linespec.o dictionary.o \
-       infcall.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 \
@@ -1017,15 +1065,14 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
        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 \
        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 \
-       d-support.o \
+       cp-namespace.o d-namespace.o \
        reggroups.o \
        trad-frame.o \
        tramp-frame.o \
@@ -1038,7 +1085,9 @@ COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
        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
+       common-exceptions.o btrace-common.o fileio.o \
+       common-regcache.o \
+       $(SUBDIR_GCC_COMPILE_OBS)
 
 TSOBS = inflow.o
 
@@ -1108,6 +1157,14 @@ check-read1: force
          $(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
@@ -1281,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
@@ -1503,6 +1560,7 @@ aclocal_m4_deps = \
        configure.ac \
        acx_configure_dir.m4 \
        libmcheck.m4 \
+       transform.m4 \
        ../bfd/bfd.m4 \
        ../config/acinclude.m4 \
        ../config/plugins.m4 \
@@ -1600,9 +1658,9 @@ 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 \
        amd64-nat.c amd64-tdep.c \
        amd64bsd-nat.c amd64fbsd-nat.c amd64fbsd-tdep.c \
@@ -1612,7 +1670,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 \
@@ -1621,14 +1681,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 \
@@ -1636,13 +1698,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 \
@@ -1656,25 +1716,22 @@ 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 \
        msp430-tdep.c \
        nios2-tdep.c nios2-linux-tdep.c \
        nbsd-nat.c nbsd-tdep.c obsd-nat.c obsd-tdep.c \
-       solib-osf.c \
-       somread.c solib-som.c \
-       posix-hdep.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 \
        ravenscar-thread.c \
-       remote-m32r-sdi.c remote-mips.c \
        remote-sim.c \
        dcache.c \
        rl78-tdep.c \
@@ -1686,7 +1743,7 @@ ALLDEPFILES = \
        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-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 \
@@ -1698,7 +1755,7 @@ ALLDEPFILES = \
        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 \
        xstormy16-tdep.c \
@@ -1835,7 +1892,6 @@ 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'`/" \
          < $@.tmp > $@
        rm -f $@.tmp
 .l.c:
@@ -1914,6 +1970,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
@@ -2172,6 +2261,26 @@ 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)
+
 #
 # gdb/target/ dependencies
 #
@@ -2182,13 +2291,31 @@ 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.
 
-i386-dregs.o: ${srcdir}/nat/i386-dregs.c
-       $(COMPILE) $(srcdir)/nat/i386-dregs.c
+x86-dregs.o: ${srcdir}/nat/x86-dregs.c
+       $(COMPILE) $(srcdir)/nat/x86-dregs.c
        $(POSTCOMPILE)
 
 linux-btrace.o: ${srcdir}/nat/linux-btrace.c
@@ -2215,6 +2342,47 @@ 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
 #
@@ -2478,6 +2646,10 @@ 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)
@@ -2534,6 +2706,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)
This page took 0.036899 seconds and 4 git commands to generate.