diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2006-12-20 22:35:51 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2006-12-20 22:35:51 +0000 |
commit | 85f7420302fdd5744812b28da6d6464faa42bc66 (patch) | |
tree | f804104805ee3833d4cd0b76d13520be04358bd7 /sim/erc32/Makefile.in | |
parent | 63e3b390f9edf0c631bec827604aec236f4972b5 (diff) | |
download | gdb-85f7420302fdd5744812b28da6d6464faa42bc66.tar.gz |
* configure.ac: Add test for readline, substitute READLINE.
* Makefile.in (READLINE_LIB): New substituted-contents variable.
(SIM_EXTRA_LIBDEPS): Don't set.
(SIM_EXTRA_LIBS): Use $(READLINE_LIB) instead of
../../readline/libreadline.a.
* configure: Regenerate.
Diffstat (limited to 'sim/erc32/Makefile.in')
-rw-r--r-- | sim/erc32/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index bb4396b6ed3..3bdde072253 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -20,10 +20,10 @@ ## COMMON_PRE_CONFIG_FRAG TERMCAP_LIB = @TERMCAP@ +READLINE_LIB = @READLINE@ SIM_OBJS = exec.o erc32.o func.o help.o float.o interf.o -SIM_EXTRA_LIBS = ../../readline/libreadline.a $(TERMCAP_LIB) -lm -SIM_EXTRA_LIBDEPS = ../../readline/libreadline.a +SIM_EXTRA_LIBS = $(READLINE_LIB) $(TERMCAP_LIB) -lm SIM_EXTRA_ALL = sis SIM_EXTRA_INSTALL = install-sis SIM_EXTRA_CLEAN = clean-sis |