1#!/usr/bin/env bash 2set -ex 3 4./fmt.sh -- --check 5if [ -z "$TARGET" ] 6then 7 make all 8 make test 9else 10 make libs 11fi