12 lines
478 B
Bash
Executable File
12 lines
478 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
./setup-llvm.sh
|
|
./configure-for-waterbox-phase-- && cd build- && make -j && make install && cd ..
|
|
printf "completed phase -1\n"
|
|
./configure-for-waterbox-phase-0 && cd build0 && make -j && make install && cd ..
|
|
printf "completed phase 0\n"
|
|
./configure-for-waterbox-phase-1 && cd build1 && make -j && make install && cd ..
|
|
printf "completed phase 1\n"
|
|
./configure-for-waterbox-phase-2 && cd build2 && make -j && make install && cd ..
|
|
printf "completed phase 2\n"
|