mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
* Makefile.in (install): Redirect ln output to /dev/null. If ln
fails on gasp, install gasp.new, not gasp.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Wed May 18 13:08:07 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (install): Redirect ln output to /dev/null. If ln
|
||||||
|
fails on gasp, install gasp.new, not gasp.
|
||||||
|
|
||||||
Wed May 18 09:16:36 1994 Jeff Law (law@snake.cs.utah.edu)
|
Wed May 18 09:16:36 1994 Jeff Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
* config/tc-hppa.c (pa_ip): Use R_HPPA_ABS_CALL, not R_HPPA for
|
* config/tc-hppa.c (pa_ip): Use R_HPPA_ABS_CALL, not R_HPPA for
|
||||||
|
@ -50,7 +50,7 @@ infodir = $(prefix)/info
|
|||||||
includedir = $(prefix)/include
|
includedir = $(prefix)/include
|
||||||
docdir = $(datadir)/doc
|
docdir = $(datadir)/doc
|
||||||
|
|
||||||
VERSION=cygnus-2.2.1
|
VERSION=cygnus-2.2.90
|
||||||
|
|
||||||
SHELL = /bin/sh
|
SHELL = /bin/sh
|
||||||
|
|
||||||
@ -457,7 +457,7 @@ install:
|
|||||||
if [ -d $(tooldir) ]; then \
|
if [ -d $(tooldir) ]; then \
|
||||||
if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
|
if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
|
||||||
rm -f $(tooldir)/bin/as; \
|
rm -f $(tooldir)/bin/as; \
|
||||||
ln $(bindir)/$$n $(tooldir)/bin/as \
|
ln $(bindir)/$$n $(tooldir)/bin/as >/dev/null 2>/dev/null \
|
||||||
|| $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as; \
|
|| $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as; \
|
||||||
else true; fi
|
else true; fi
|
||||||
srcroot=`cd $(srcroot); pwd`; export srcroot; \
|
srcroot=`cd $(srcroot); pwd`; export srcroot; \
|
||||||
@ -466,8 +466,8 @@ install:
|
|||||||
if [ -d $(tooldir) ]; then \
|
if [ -d $(tooldir) ]; then \
|
||||||
if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
|
if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
|
||||||
rm -f $(tooldir)/bin/gasp; \
|
rm -f $(tooldir)/bin/gasp; \
|
||||||
ln $(bindir)/$$n $(tooldir)/bin/gasp \
|
ln $(bindir)/$$n $(tooldir)/bin/gasp >/dev/null 2>/dev/null \
|
||||||
|| $(INSTALL_PROGRAM) gasp $(tooldir)/bin/gasp; \
|
|| $(INSTALL_PROGRAM) gasp.new $(tooldir)/bin/gasp; \
|
||||||
else true; fi
|
else true; fi
|
||||||
|
|
||||||
# Cancel installation by deleting the installed files.
|
# Cancel installation by deleting the installed files.
|
||||||
@ -482,22 +482,22 @@ uninstall:
|
|||||||
|
|
||||||
tags TAGS: force
|
tags TAGS: force
|
||||||
etags $(REAL_HEADERS) $(REAL_SOURCES) $(srcdir)/config/*.[hc] $(srcdir)/README $(srcdir)/Makefile.in
|
etags $(REAL_HEADERS) $(REAL_SOURCES) $(srcdir)/config/*.[hc] $(srcdir)/README $(srcdir)/Makefile.in
|
||||||
|
|
||||||
bootstrap: as.new force
|
bootstrap: as.new force
|
||||||
$(MAKE) stage1
|
$(MAKE) stage1
|
||||||
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
|
||||||
$(MAKE) stage2
|
$(MAKE) stage2
|
||||||
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
|
||||||
$(MAKE) comparison against=stage2
|
$(MAKE) comparison against=stage2
|
||||||
|
|
||||||
bootstrap2: force
|
bootstrap2: force
|
||||||
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
|
||||||
$(MAKE) stage2
|
$(MAKE) stage2
|
||||||
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
|
||||||
$(MAKE) comparison against=stage2
|
$(MAKE) comparison against=stage2
|
||||||
|
|
||||||
bootstrap3: force
|
bootstrap3: force
|
||||||
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
|
||||||
$(MAKE) comparison against=stage2
|
$(MAKE) comparison against=stage2
|
||||||
|
|
||||||
# Copy the object files from a particular stage into a subdirectory.
|
# Copy the object files from a particular stage into a subdirectory.
|
||||||
|
Reference in New Issue
Block a user