Added support for binary comparisons.

This commit is contained in:
K. Richard Pixley 1991-06-09 20:22:11 +00:00
parent 2099685bad
commit 30ba1dfeaf
2 changed files with 8 additions and 0 deletions

View File

@ -153,6 +153,9 @@ stage3: force
- mv -f $(STAGESTUFF) stage3
- (cd stage3 ; ln -s $(LD_PROG) ld)
comparison: force
for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
de-stage1: force
- (cd stage1 ; mv -f * ..)
- rm ld

View File

@ -124,6 +124,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