diff options
author | K. Richard Pixley <rich@cygnus> | 1991-05-19 08:44:48 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-05-19 08:44:48 +0000 |
commit | d39a9543a62589843967f7dddb61054c1e4e3369 (patch) | |
tree | e9d9e7bc08f5986e77450ec81dbba1d7e33f5852 /gdb | |
parent | e1bba588b87da700cb13d5c26b1595777468c664 (diff) | |
download | gdb-d39a9543a62589843967f7dddb61054c1e4e3369.zip gdb-d39a9543a62589843967f7dddb61054c1e4e3369.tar.gz gdb-d39a9543a62589843967f7dddb61054c1e4e3369.tar.bz2 |
Config polish.
Diffstat (limited to 'gdb')
-rwxr-xr-x | gdb/Makefile.dist | 12 | ||||
-rw-r--r-- | gdb/Makefile.in | 12 |
2 files changed, 10 insertions, 14 deletions
diff --git a/gdb/Makefile.dist b/gdb/Makefile.dist index 4771214..7e47d75 100755 --- a/gdb/Makefile.dist +++ b/gdb/Makefile.dist @@ -77,7 +77,8 @@ BFD_DEP = $$(BFD_DIR) # the parent of the directory in which live the readline headers. READLINE_DIR = ${srcdir}/.. -READLINE_DEP = $$(READLINE_DIR) +RL_LIB = $(READLINE_DIR)/readline${subdir}/libreadline.a +RL_LIB_DEP = $(RL_LIB) # All the includes used for CFLAGS and for lint. # -I. for config files. @@ -110,9 +111,9 @@ TERMCAP = -ltermcap # For example, -lPW for System V to get alloca(). # FIXME STOPGAP FOR BFD LIBRARY: BFD stuff CLIBS = ${TERMCAP} $(XM_CLIBS) ${TM_CLIBS} ${BFD_DIR}${subdir}/libbfd.a \ - ${LIBIBERTY} ${READLINE_DIR}/readline${subdir}/libreadline.a + ${LIBIBERTY} ${READLINE} CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_DIR}${subdir}/libbfd.a \ - ${LIBIBERTY} ${READLINE_DIR}/readline${subdir}/libreadline.a + ${LIBIBERTY} ${READLINE} ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ADD_DEPS = ${REGEX1} ${ALLOCA1} ${GNU_MALLOC} @@ -235,9 +236,6 @@ TSSTART = /lib/crt0.o NTSSTART = kdb-start.o -RL_LIB = ../readline/libreadline.a -RL_LIB_DEP = $(RL_LIB) - # Prevent Sun make from putting in the machine type. Setting # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1. .c.o: @@ -428,7 +426,7 @@ clean: rm -f gdb core gdb.tar gdb.tar.Z make.log rm -f gdb[0-9] rm -f gdb.dvi gdb-all* - cd readline ; make clean +# cd readline ; make clean distclean: clean expread.tab.c TAGS rm -f tm.h xm.h config.status diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 4771214..7e47d75 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -77,7 +77,8 @@ BFD_DEP = $$(BFD_DIR) # the parent of the directory in which live the readline headers. READLINE_DIR = ${srcdir}/.. -READLINE_DEP = $$(READLINE_DIR) +RL_LIB = $(READLINE_DIR)/readline${subdir}/libreadline.a +RL_LIB_DEP = $(RL_LIB) # All the includes used for CFLAGS and for lint. # -I. for config files. @@ -110,9 +111,9 @@ TERMCAP = -ltermcap # For example, -lPW for System V to get alloca(). # FIXME STOPGAP FOR BFD LIBRARY: BFD stuff CLIBS = ${TERMCAP} $(XM_CLIBS) ${TM_CLIBS} ${BFD_DIR}${subdir}/libbfd.a \ - ${LIBIBERTY} ${READLINE_DIR}/readline${subdir}/libreadline.a + ${LIBIBERTY} ${READLINE} CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_DIR}${subdir}/libbfd.a \ - ${LIBIBERTY} ${READLINE_DIR}/readline${subdir}/libreadline.a + ${LIBIBERTY} ${READLINE} ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ADD_DEPS = ${REGEX1} ${ALLOCA1} ${GNU_MALLOC} @@ -235,9 +236,6 @@ TSSTART = /lib/crt0.o NTSSTART = kdb-start.o -RL_LIB = ../readline/libreadline.a -RL_LIB_DEP = $(RL_LIB) - # Prevent Sun make from putting in the machine type. Setting # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1. .c.o: @@ -428,7 +426,7 @@ clean: rm -f gdb core gdb.tar gdb.tar.Z make.log rm -f gdb[0-9] rm -f gdb.dvi gdb-all* - cd readline ; make clean +# cd readline ; make clean distclean: clean expread.tab.c TAGS rm -f tm.h xm.h config.status |