diff options
author | J.T. Conklin <jtc@acorntoolworks.com> | 1994-11-18 18:49:56 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@acorntoolworks.com> | 1994-11-18 18:49:56 +0000 |
commit | 2ec604df9766bf52e1e4c99202a8a1a14c54d08a (patch) | |
tree | 878023db7b4dd1f5736a3d436c44964881e86c37 /gdb/nlm | |
parent | 29c0d15c0172df8adb38b087148f1f85a0d4c108 (diff) | |
download | gdb-2ec604df9766bf52e1e4c99202a8a1a14c54d08a.zip gdb-2ec604df9766bf52e1e4c99202a8a1a14c54d08a.tar.gz gdb-2ec604df9766bf52e1e4c99202a8a1a14c54d08a.tar.bz2 |
* Makefile.in (LD_FOR_TARGET, NLMCONV_FOR_TARGET): Removed.
* nlm/Makefile.in (gdbserve.O): Link with ${CC_FOR_TARGET}.
(LD_FOR_TARGET): Removed.
Diffstat (limited to 'gdb/nlm')
-rw-r--r-- | gdb/nlm/Makefile.in | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gdb/nlm/Makefile.in b/gdb/nlm/Makefile.in index a99e8a2..d89b88c 100644 --- a/gdb/nlm/Makefile.in +++ b/gdb/nlm/Makefile.in @@ -73,17 +73,6 @@ NLMCONV_FOR_TARGET = ` \ fi; \ fi` -LD_FOR_TARGET = ` \ - if [ -f ../../ld/ld.new ] ; then \ - echo ../../ld/ld.new; \ - else \ - if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ - echo $(LD); \ - else \ - t='$(program_transform_name)'; echo ld | sed -e '' $$t; \ - fi; \ - fi` - AR = ar AR_FLAGS = qv RANLIB = ranlib @@ -193,7 +182,7 @@ gdbserve.nlm: gdbserve.O $(srcdir)/gdbserve.def ${NLMCONV_FOR_TARGET} -T $(srcdir)/gdbserve.def gdbserve.O: prelude.o gdbserve.o $(TDEPFILES) - ${LD_FOR_TARGET} $(LDFLAGS) -r -o gdbserve.O prelude.o gdbserve.o ${TDEPFILES} + ${CC_FOR_TARGET} $(LDFLAGS) -r -o gdbserve.O prelude.o gdbserve.o ${TDEPFILES} config.status: @echo "You must configure gdbserver. Look at the README file for details." |