mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-31 22:04:12 +08:00
* Makefile.in: remove old C++ rules; remove install:all and
install-info:info dependencies (these cause some spurious rebuilds at 'make install' time)
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
Fri Jun 4 16:18:24 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in: remove old C++ rules; remove install:all and
|
||||||
|
install-info:info dependencies (these cause some spurious rebuilds
|
||||||
|
at 'make install' time)
|
||||||
|
|
||||||
Fri Jun 4 08:50:14 1993 Ian Lance Taylor (ian@cygnus.com)
|
Fri Jun 4 08:50:14 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
* configure.in (mips-idt-ecoffl*): New target; use mips-idtl.
|
* configure.in (mips-idt-ecoffl*): New target; use mips-idtl.
|
||||||
|
@ -95,8 +95,6 @@ HOSTING_CRT0=/lib/crt0.o
|
|||||||
HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else echo $(libdir)/libgcc.a; fi` -lc
|
HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else echo $(libdir)/libgcc.a; fi` -lc
|
||||||
HOSTING_EMU=LDEMULATION=$(EMUL); export LDEMULATION
|
HOSTING_EMU=LDEMULATION=$(EMUL); export LDEMULATION
|
||||||
|
|
||||||
C++ = g++ -fgnu-linker
|
|
||||||
|
|
||||||
### Host, target, and site specific Makefile fragments come in here.
|
### Host, target, and site specific Makefile fragments come in here.
|
||||||
####
|
####
|
||||||
|
|
||||||
@ -107,9 +105,6 @@ LINTFLAGS = $(INCLUDES) $(EXTRA_DEF)
|
|||||||
.c.o:
|
.c.o:
|
||||||
$(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $<
|
$(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $<
|
||||||
|
|
||||||
.cc.o:
|
|
||||||
$(C++) -c $(CFLAGS) -I$(srcdir) $<
|
|
||||||
|
|
||||||
# go directly to ld.new in case this ld isn't capable of
|
# go directly to ld.new in case this ld isn't capable of
|
||||||
# linking native object on this host. It can be renamed on
|
# linking native object on this host. It can be renamed on
|
||||||
# install.
|
# install.
|
||||||
@ -511,7 +506,7 @@ tags TAGS:$(SOURCES) $(HEADERS)
|
|||||||
objdump:objdump.c
|
objdump:objdump.c
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install: $(LD_PROG)
|
install:
|
||||||
-parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
|
-parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
-if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
|
-if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
|
||||||
@ -531,7 +526,7 @@ install: $(LD_PROG)
|
|||||||
ln $(tooldir)/bin/ld $(tooldir)/bin/gld; \
|
ln $(tooldir)/bin/ld $(tooldir)/bin/gld; \
|
||||||
else true; fi
|
else true; fi
|
||||||
|
|
||||||
install-info: info
|
install-info:
|
||||||
-parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
|
-parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
|
||||||
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
|
||||||
-if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
|
-if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
|
||||||
|
Reference in New Issue
Block a user