DF-0746 / build.sh
#!/bin/sh # DF-0746 build — both the buggy transcription and the fixed transcription. set -e cd "$(dirname "$0")" echo "+ cc -O2 -Wall -Wextra -o harness harness.c" cc -O2 -Wall -Wextra -o harness harness.c echo "+ cc -O2 -Wall -Wextra -o harness_fixed harness_fixed.c" cc -O2 -Wall -Wextra -o harness_fixed harness_fixed.c echo "BUILD_EXIT=0" |