diff options
author | John Gilmore <gnu@cygnus> | 1991-05-04 23:15:02 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-05-04 23:15:02 +0000 |
commit | 5594d534a24ff0e48806803376209d4b27ec8351 (patch) | |
tree | 27b7836ec8a38f69e68e3c864df90f364208160a /gdb/Makefile.dist | |
parent | b1847ba9e7da744bb3695f9611dad4119cc7991e (diff) | |
download | gdb-5594d534a24ff0e48806803376209d4b27ec8351.zip gdb-5594d534a24ff0e48806803376209d4b27ec8351.tar.gz gdb-5594d534a24ff0e48806803376209d4b27ec8351.tar.bz2 |
Saber C (lint) cleanups, and a few bug fixes. See ChangeLog.
Diffstat (limited to 'gdb/Makefile.dist')
-rwxr-xr-x | gdb/Makefile.dist | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gdb/Makefile.dist b/gdb/Makefile.dist index 3acd909..b3f9989 100755 --- a/gdb/Makefile.dist +++ b/gdb/Makefile.dist @@ -82,7 +82,8 @@ CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS} LDFLAGS = $(CFLAGS) # Where is the "-liberty" library, containing getopt and obstack? -LIBIBERTY = ${srcdir}/../libiberty${subdir}/libiberty.a +LIBIBERTY_DIR = ${srcdir}/../libiberty +LIBIBERTY = ${LIBIBERTY_DIR}${subdir}/libiberty.a # Flags that describe where you can find the termcap library. # You may need to make other arrangements for USG. @@ -242,14 +243,18 @@ gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${RL_LIB_DEP} ${CDEPS} init.o ${RL_LIB} $(CLIBS) saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c - #setopt load_flags $(CFLAGS) -I$(BFD_DIR) + #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS #load ./init.c $(SFILES) - #unload ${srcdir}/expread.y + #unload ${srcdir}/expread.y ${srcdir}/vx-share/*.h + #unload ${srcdir}/nindy-share/[A-Z]* #load ${srcdir}/expread.tab.c readline/libreadline.a #load copying.c version.c #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'` - #load ${BFD_DIR}/libbfd.a -ltermcap + #load ${LIBIBERTY_DIR}/*.c + #load ${BFD_DIR}/*.c + #load -ltermcap ##void mcheck(a) void (*a)(); { } + ##void mtrace() { } |