Trivially tweak the comment documenting initial_gdb_ttystate
[deliverable/binutils-gdb.git] / gdb / Makefile.in
index 1da8af60bdb2228a10bd3fd827a8ff16c3f4ff6b..5dae3e6b40e22f8ff67b1d801905259b259a6b73 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1989-2014 Free Software Foundation, Inc.
+# Copyright (C) 1989-2015 Free Software Foundation, Inc.
 
 # This file is part of GDB.
 
@@ -280,6 +280,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 +379,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 \
@@ -399,6 +418,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 \
@@ -644,7 +664,7 @@ ALL_TARGET_OBS = \
        m88k-tdep.o \
        mep-tdep.o \
        microblaze-tdep.o microblaze-linux-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 \
@@ -852,7 +872,8 @@ SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.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 \
+       $(SUBDIR_GCC_COMPILE_SRCS)
 
 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
 
@@ -874,7 +895,7 @@ 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 \
@@ -1039,7 +1060,8 @@ 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 \
+       $(SUBDIR_GCC_COMPILE_OBS)
 
 TSOBS = inflow.o
 
@@ -1282,7 +1304,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
@@ -1660,6 +1682,7 @@ ALLDEPFILES = \
        microblaze-tdep.c microblaze-linux-tdep.c \
        mingw-hdep.c \
        mips-linux-nat.c mips-linux-tdep.c \
+       mips-sde-tdep.c \
        mips-tdep.c \
        mipsnbsd-nat.c mipsnbsd-tdep.c \
        mips64obsd-nat.c mips64obsd-tdep.c \
@@ -1914,6 +1937,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
@@ -2478,6 +2534,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)
This page took 0.025888 seconds and 4 git commands to generate.