summaryrefslogtreecommitdiffstats
path: root/eshtrans/bootstrap.sh
blob: c1a7fe5d811ba22186994d1005b52b53ae8cad22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
printf 'Stage 1\n'
make clean
time -p make -f Makefile.old
mv eshtrans.old eshtrans.stage1

printf 'Stage 2\n'
make clean
cp -p eshtrans.stage1 eshtrans
time -p make
mv eshtrans eshtrans.stage2

printf 'Stage 3\n'
make clean
cp -p eshtrans.stage2 eshtrans
time -p make
mv eshtrans eshtrans.stage3