You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
395 B
13 lines
395 B
4 years ago
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
export MAKEFLAGS="-j$(nproc)"
|
||
|
|
||
|
[ ! -d build/install-gcc ] && ./build_gcc.sh
|
||
|
[ ! -d build/install-ant ] && ./build_ant.sh
|
||
|
[ ! -d build/install-icedtea7 ] && ./build_icedtea7.sh
|
||
|
[ ! -d build/install-icedtea8 ] && ./build_icedtea8.sh
|
||
|
[ ! -d build/install-jdk9 ] && ./build_jdk9.sh
|
||
|
[ ! -d build/install-jdk10 ] && ./build_jdk10.sh
|
||
|
[ ! -d build/install-jdk11 ] && ./build_jdk11.sh
|