diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-05-19 17:56:18 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-05-19 17:56:18 +0000 |
commit | 5b40415c63c9d9784966c0199e78e321cf5347fa (patch) | |
tree | e3ee90a85336decc2a04eaadbdb1f621f8aba056 /gdb/Makefile.in | |
parent | 6eef4543cab376ff16f12e1aad2120fcdf38c259 (diff) | |
download | gdb-5b40415c63c9d9784966c0199e78e321cf5347fa.zip gdb-5b40415c63c9d9784966c0199e78e321cf5347fa.tar.gz gdb-5b40415c63c9d9784966c0199e78e321cf5347fa.tar.bz2 |
* Makefile.in (INSTALLED_LIBS): New variable.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 5c52ccd..85bbff3 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -156,6 +156,10 @@ OPCODES = ./../opcodes${subdir}/libopcodes.a # Libraries and corresponding dependencies for compiling gdb. # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs. # TERMCAP comes after readline, since readline depends on it. +# If you have the Cygnus libraries installed, +# you can use 'CLIBS=${INSTALLED_LIBS}' 'CDEPS=' +INSTALLED_LIBS=-lbfd -lreadline ${TERMCAP} -lopcodes -lmmalloc \ + -liberty ${XM_CLIBS} ${TM_CLIBS} ${NAT_CLIBS} CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${OPCODES} ${MMALLOC_LIB} \ ${LIBIBERTY} ${XM_CLIBS} ${TM_CLIBS} ${NAT_CLIBS} CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${NAT_CDEPS} \ |