aboutsummaryrefslogtreecommitdiff
path: root/gas/Makefile.in
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1991-06-09 20:27:20 +0000
committerK. Richard Pixley <rich@cygnus>1991-06-09 20:27:20 +0000
commita01bf1fbc1b3ef33ea969c597dd29d86432bdbc0 (patch)
tree0d523198945ccde44b00b06cc325f0a2d778abd3 /gas/Makefile.in
parent30ba1dfeafa7405c0c1d94e8d9a14acfdaede7ef (diff)
downloadgdb-a01bf1fbc1b3ef33ea969c597dd29d86432bdbc0.zip
gdb-a01bf1fbc1b3ef33ea969c597dd29d86432bdbc0.tar.gz
gdb-a01bf1fbc1b3ef33ea969c597dd29d86432bdbc0.tar.bz2
added support for binary comparisons.
Diffstat (limited to 'gas/Makefile.in')
-rw-r--r--gas/Makefile.in22
1 files changed, 8 insertions, 14 deletions
diff --git a/gas/Makefile.in b/gas/Makefile.in
index 7d91bec..f812ede 100644
--- a/gas/Makefile.in
+++ b/gas/Makefile.in
@@ -488,17 +488,17 @@ bootstrap: as force
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as
$(MAKE) stage2
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as
- $(MAKE) stage-last
+ $(MAKE) comparison against=stage2
bootstrap2: force
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage1/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as
$(MAKE) stage2
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as
- $(MAKE) stage-last
+ $(MAKE) comparison against-stage2
bootstrap3: force
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage2/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as
- $(MAKE) stage-last
+ $(MAKE) comparison against=stage2
# Copy the object files from a particular stage into a subdirectory.
stage1: force
@@ -513,6 +513,11 @@ stage3: force
-mkdir stage3
-mv $(STAGESTUFF) stage3
+against=stage2
+
+comparison: force
+ for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
+
de-stage1: force
- (cd stage1 ; mv -f * ..)
- rmdir stage1
@@ -525,9 +530,6 @@ de-stage3: force
- (cd stage3 ; mv -f * ..)
- rmdir stage3
-stage-last:
- for i in *.o; do cmp $$i stage2/$$i; done
-
# Copy just the executable files from a particular stage into a subdirectory,
# and delete the object files. Use this if you're just verifying a version
# that is pretty sure to work, and you are short of disk space.
@@ -563,14 +565,6 @@ risky-stage4: force
.PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
-comparison: clean
- $(MAKE) "CC=/usr/local/bin/gcc -Wall" as
- $(MAKE) stage1
- - $(MAKE) "CC=/usr/local/bin/gcc -Wall -b$(target) -Bstage1/" as -k
- $(MAKE) stage2
- - $(MAKE) "CC=/usr/local/bin/gcc -Wall -b$(target)" as -k
- $(MAKE) stage-last
-
force:
Makefile: $(srcdir)/Makefile.in $(srcdir)/configure