diff options
-rw-r--r-- | eshtrans/bootstrap.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/eshtrans/bootstrap.sh b/eshtrans/bootstrap.sh new file mode 100644 index 0000000..9d0b763 --- /dev/null +++ b/eshtrans/bootstrap.sh @@ -0,0 +1,16 @@ +printf 'Stage 1' +make clean +make -f Makefile.old +mv eshtrans.old eshtrans.stage1 + +printf 'Stage 2' +make clean +cp -p eshtrans.stage1 eshtrans +make +mv eshtrans eshtrans.stage2 + +printf 'Stage 3' +make clean +cp -p eshtrans.stage2 eshtrans +make +mv eshtrans eshtrans.stage3 |