#!/bin/sh
# DF-0843 build.sh - build both the deterministic harness and the live trigger
set -e
cd "$(dirname "$0")"
echo "+ cc -O2 -pthread -o harness harness.c"
cc -O2 -pthread -o harness harness.c
echo "+ cc -O2 -pthread -o trigger trigger.c"
cc -O2 -pthread -o trigger trigger.c
echo "BUILD_EXIT=0"
ls -l harness trigger
