diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-02-05 01:47:26 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-02-05 01:47:26 +0000 |
commit | c7bb1531b8d600fce359dd6ca65a2c3420e65e0c (patch) | |
tree | e66e362aa214ffcdf057031cdad3e6c8185c6fef /gdb/configure.in | |
parent | 53b0f196ac7ed30d86b391e6fa46265f0e2f4f5a (diff) | |
download | gdb-c7bb1531b8d600fce359dd6ca65a2c3420e65e0c.zip gdb-c7bb1531b8d600fce359dd6ca65a2c3420e65e0c.tar.gz gdb-c7bb1531b8d600fce359dd6ca65a2c3420e65e0c.tar.bz2 |
* Makefile.in (SFILES): add tracepoint.c.
(LINTFILES): add @CONFIG_SRCS@.
(SOURCES): Ditto.
* configure.in (CONFIG_SRCS): Mirror use of CONFIG_OBS.
* configure: Regenerated.
Diffstat (limited to 'gdb/configure.in')
-rw-r--r-- | gdb/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/configure.in b/gdb/configure.in index 5ad7b32..4e8793c 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -38,6 +38,7 @@ dnl List of object files added by configure. CONFIG_OBS= CONFIG_DEPS= +CONFIG_SRCS= configdirs="doc testsuite" @@ -210,6 +211,7 @@ if test ${build} = ${host} -a ${host} = ${target} ; then AC_MSG_RESULT(yes) AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT) CONFIG_OBS="${CONFIG_OJS} hpux-thread.o" + CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c" else AC_MSG_RESULT(no (suppressed because you are not using GCC)) fi @@ -223,6 +225,7 @@ if test ${build} = ${host} -a ${host} = ${target} ; then AC_MSG_RESULT(yes) AC_DEFINE(HAVE_THREAD_DB_LIB) CONFIG_OBS="${CONFIG_OBS} sol-thread.o" + CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c" AC_CHECK_LIB(dl, dlopen) if test "$GCC" = "yes" ; then # The GNU linker requires the -export-dynamic option to make @@ -258,6 +261,7 @@ esac]) if test "${enable_netrom}" = "yes"; then CONFIG_OBS="${CONFIG_OBS} remote-nrom.o" + CONFIG_SRCS="${CONFIG_SRCS} remote-nrom.c" fi MMALLOC_CFLAGS= @@ -427,6 +431,7 @@ AC_SUBST(ENABLE_CFLAGS) AC_SUBST(CONFIG_OBS) AC_SUBST(CONFIG_DEPS) +AC_SUBST(CONFIG_SRCS) # Begin stuff to support --enable-shared AC_ARG_ENABLE(shared, |