* Makefile.in (LD_FOR_TARGET, NLMCONV_FOR_TARGET): Removed.

* nlm/Makefile.in (gdbserve.O): Link with ${CC_FOR_TARGET}.
  (LD_FOR_TARGET): Removed.
This commit is contained in:
J.T. Conklin 1994-11-18 18:49:56 +00:00
parent 29c0d15c01
commit 2ec604df97
3 changed files with 15 additions and 37 deletions

View File

@ -1,3 +1,16 @@
Fri Nov 18 10:38:12 1994 J.T. Conklin <jtc@rtl.cygnus.com>
* Makefile.in (LD_FOR_TARGET, NLMCONV_FOR_TARGET): Removed.
* nlm/Makefile.in (gdbserve.O): Link with ${CC_FOR_TARGET}.
(LD_FOR_TARGET): Removed.
Thu Nov 17 22:09:50 1994 Rob Savoye <rob@darkstar.cygnus.com>
* monitor.[ch], w89k-rom.c, op50n-rom.c, idp-rom.c: Add support
for two variables used to control the load protocol and conversion
type.
Thu Nov 17 17:51:12 1994 Stan Shebs (shebs@andros.cygnus.com)
Support for different MIPS IDT processor models.

View File

@ -292,28 +292,6 @@ CHILL_FOR_TARGET = ` \
fi`
CHILL_LIB = -lchill
NLMCONV_FOR_TARGET = ` \
if [ -f $${rootme}/../binutils/nlmconv ] ; then \
echo $${rootme}/../binutils/nlmconv; \
else \
if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
echo $(NLMCONV); \
else \
t='$(program_transform_name)'; echo nlmconv | sed -e '' $$t; \
fi; \
fi`
LD_FOR_TARGET = ` \
if [ -f $${rootme}/../ld/ld.new ] ; then \
echo $${rootme}/../ld/ld.new; \
else \
if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
echo $(LD); \
else \
t='$(program_transform_name)'; echo ld | sed -e '' $$t; \
fi; \
fi`
# The use of $$(x_FOR_TARGET) reduces the command line length by not
# duplicating the lengthy definition.
TARGET_FLAGS_TO_PASS = \
@ -334,9 +312,7 @@ TARGET_FLAGS_TO_PASS = \
"INSTALL=$(INSTALL)" \
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
"INSTALL_DATA=$(INSTALL_DATA)" \
"LD_FOR_TARGET=$(LD_FOR_TARGET)" \
"MAKEINFO=$(MAKEINFO)" \
"NLMCONV_FOR_TARGET=$(NLMCONV_FOR_TARGET)" \
"RUNTEST=$(RUNTEST)" \
"RUNTESTFLAGS=$(RUNTESTFLAGS)"
@ -537,7 +513,7 @@ install-only:
fi ; \
$(INSTALL_PROGRAM) gdb $(bindir)/$$transformed_name ; \
$(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
if [ -n $(ENABLE_GDBTK) ] ; then \
if [ x"$(ENABLE_GDBTK)" != x ] ; then \
$(INSTALL_DATA) $(srcdir)/gdbtk.tcl $(libdir)/gdbtk.tcl ; \
fi
@$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do

View File

@ -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."