mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
* Makefile.in (de-stage1, de-stage2, de-stage3): Use rm -f.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
Thu Apr 14 13:34:24 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Thu Apr 14 13:34:24 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in (de-stage1, de-stage2, de-stage3): Use rm -f.
|
||||||
|
|
||||||
* config/tc-mips.h (DIFF_EXPR_OK): Define.
|
* config/tc-mips.h (DIFF_EXPR_OK): Define.
|
||||||
* config/tc-mips.c (macro_build): Permit BFD_RELOC_PCREL_LO16 for
|
* config/tc-mips.c (macro_build): Permit BFD_RELOC_PCREL_LO16 for
|
||||||
certain cases of 'i', 'j' and 'o'. Change 'u' to take an
|
certain cases of 'i', 'j' and 'o'. Change 'u' to take an
|
||||||
|
@ -199,6 +199,8 @@ LINKED_HEADERS = \
|
|||||||
|
|
||||||
HEADERS = $(LINKED_HEADERS) $(REAL_HEADERS)
|
HEADERS = $(LINKED_HEADERS) $(REAL_HEADERS)
|
||||||
|
|
||||||
|
#### host, target, and site specific Makefile frags come in here.
|
||||||
|
|
||||||
OBJS = \
|
OBJS = \
|
||||||
targ-cpu.o \
|
targ-cpu.o \
|
||||||
obj-format.o \
|
obj-format.o \
|
||||||
@ -227,9 +229,8 @@ OBJS = \
|
|||||||
listing.o \
|
listing.o \
|
||||||
ecoff.o \
|
ecoff.o \
|
||||||
stabs.o \
|
stabs.o \
|
||||||
xmalloc.o
|
xmalloc.o \
|
||||||
|
$(TE_OBJS)
|
||||||
#### host, target, and site specific Makefile frags come in here.
|
|
||||||
|
|
||||||
all: as.new gasp.new
|
all: as.new gasp.new
|
||||||
@srcroot=`cd $(srcroot); pwd`; export srcroot; \
|
@srcroot=`cd $(srcroot); pwd`; export srcroot; \
|
||||||
@ -299,7 +300,9 @@ config-stamp: Makefile
|
|||||||
echo '#define TARGET_ALIAS "$(target_alias)"' >> config.new
|
echo '#define TARGET_ALIAS "$(target_alias)"' >> config.new
|
||||||
echo '#define TARGET_CANONICAL "$(target_canonical)"' >> config.new
|
echo '#define TARGET_CANONICAL "$(target_canonical)"' >> config.new
|
||||||
echo '#define GAS_VERSION "$(VERSION)"' >> config.new
|
echo '#define GAS_VERSION "$(VERSION)"' >> config.new
|
||||||
echo '#$(BFDDEF) BFD_ASSEMBLER' >> config.new
|
if [ "$(defs)" != "" ]; then \
|
||||||
|
echo '#define $(defs)' >> config.new ; \
|
||||||
|
else true; fi
|
||||||
echo '#endif /* TARGET_CPU */' >> config.new
|
echo '#endif /* TARGET_CPU */' >> config.new
|
||||||
$(srcdir)/../move-if-change config.new config.h
|
$(srcdir)/../move-if-change config.new config.h
|
||||||
touch config-stamp
|
touch config-stamp
|
||||||
@ -509,15 +512,15 @@ comparison: force
|
|||||||
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
|
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
|
||||||
|
|
||||||
de-stage1: force
|
de-stage1: force
|
||||||
- (cd stage1 ; rm as ; mv -f * ..)
|
- (cd stage1 ; rm -f as ; mv -f * ..)
|
||||||
- rmdir stage1
|
- rmdir stage1
|
||||||
|
|
||||||
de-stage2: force
|
de-stage2: force
|
||||||
- (cd stage2 ; rm as ; mv -f * ..)
|
- (cd stage2 ; rm -f as ; mv -f * ..)
|
||||||
- rmdir stage2
|
- rmdir stage2
|
||||||
|
|
||||||
de-stage3: force
|
de-stage3: force
|
||||||
- (cd stage3 ; rm as ; mv -f * ..)
|
- (cd stage3 ; rm -f as ; mv -f * ..)
|
||||||
- rmdir stage3
|
- rmdir stage3
|
||||||
|
|
||||||
#In GNU Make, ignore whether `stage*' exists.
|
#In GNU Make, ignore whether `stage*' exists.
|
||||||
|
Reference in New Issue
Block a user