diff options
author | Stu Grossman <grossman@cygnus> | 1992-05-08 15:49:48 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-05-08 15:49:48 +0000 |
commit | aa94235541b5883ed3ff712e40d2f25539384d54 (patch) | |
tree | ae8371441efa19c4a7998c91bd246ced67c207d3 | |
parent | a60ff512683b962c4d6e84a40f8b20173dc49855 (diff) | |
download | gdb-aa94235541b5883ed3ff712e40d2f25539384d54.zip gdb-aa94235541b5883ed3ff712e40d2f25539384d54.tar.gz gdb-aa94235541b5883ed3ff712e40d2f25539384d54.tar.bz2 |
* Makefile.in, remote-udi.c, remote-vx.c, 29k-share/dfe/mini2udi.c,
29k-share/dfe/yank.c, vx-share/xdr_ptrace.c, vx-share/xdr_regs.c:
Remove -I29k-share, -Ivx-share from Makefile.in. Make #includes
relative to each source file.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/Makefile.in | 2 | ||||
-rw-r--r-- | gdb/remote-udi.c | 2 | ||||
-rw-r--r-- | gdb/remote-vx.c | 10 | ||||
-rw-r--r-- | gdb/vx-share/xdr_ptrace.c | 4 | ||||
-rw-r--r-- | gdb/vx-share/xdr_regs.c | 6 |
6 files changed, 17 insertions, 12 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fd3371d..186d594 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ Fri May 8 07:48:27 1992 K. Richard Pixley (rich@cygnus.com) + * Makefile.in, remote-udi.c, remote-vx.c, 29k-share/dfe/mini2udi.c, + 29k-share/dfe/yank.c, vx-share/xdr_ptrace.c, vx-share/xdr_regs.c: + Remove -I29k-share, -Ivx-share from Makefile.in. Make #includes + relative to each source file. + * Makefile.in: propogate INSTALL, INSTALL_DATA, INSTALL_PROGRAM on recursions. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b75489c..a5f9243 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -129,7 +129,7 @@ RL_LIB = ./../readline${subdir}/libreadline.a # All the includes used for CFLAGS and for lint. # -I. for config files. # -I${srcdir} possibly for regex.h also. -INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR) -I$(READLINE_DIR) -I${srcdir}/vx-share -I${srcdir}/29k-share/include -I${srcdir}/29k-share/udi +INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR) -I$(READLINE_DIR) # {X,T}M_CFLAGS, if defined, has system-dependent CFLAGS. # CFLAGS for GDB diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index 0030047..68e8d37 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -45,7 +45,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <string.h> #include "terminal.h" #include "target.h" -#include "udiproc.h" +#include "29k-share/udi/udiproc.h" /* access the register store directly, without going through the normal handler functions. This avoids an extra data copy diff --git a/gdb/remote-vx.c b/gdb/remote-vx.c index a8f382d..1b3bc4d8 100644 --- a/gdb/remote-vx.c +++ b/gdb/remote-vx.c @@ -40,11 +40,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef free #include <sys/time.h> /* UTek's <rpc/rpc.h> doesn't #incl this */ #include <netdb.h> -#include <ptrace.h> -#include "xdr_ptrace.h" -#include "xdr_ld.h" -#include "xdr_rdb.h" -#include "dbgRpcLib.h" +#include "vx-share/ptrace.h" +#include "vx-share/xdr_ptrace.h" +#include "vx-share/xdr_ld.h" +#include "vx-share/xdr_rdb.h" +#include "vx-share/dbgRpcLib.h" #include <symtab.h> diff --git a/gdb/vx-share/xdr_ptrace.c b/gdb/vx-share/xdr_ptrace.c index 0704665..9233137 100644 --- a/gdb/vx-share/xdr_ptrace.c +++ b/gdb/vx-share/xdr_ptrace.c @@ -12,9 +12,9 @@ modification history 01a,05jun90,llk extracted from xdr_ptrace.h, version 01c. */ -#include <vxWorks.h> +#include "vxWorks.h" #include <rpc/rpc.h> -#include <xdr_ptrace.h> +#include "xdr_ptrace.h" #define MAX_LEN 32000 diff --git a/gdb/vx-share/xdr_regs.c b/gdb/vx-share/xdr_regs.c index 9152423..b8c5111 100644 --- a/gdb/vx-share/xdr_regs.c +++ b/gdb/vx-share/xdr_regs.c @@ -8,10 +8,10 @@ This module contains the eXternal Data Representation (XDR) routines for the GDB interface for VxWorks. */ -#include <vxWorks.h> +#include "vxWorks.h" #include <rpc/rpc.h> -#include <reg.h> -#include <xdr_regs.h> +#include "reg.h" +#include "xdr_regs.h" #ifdef I80960 |