#!/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