#!/bin/sh
# DF-0046 build: compile both the trigger PoC and the supplementary fix test.
set -e
cd "$(dirname "$0")"
cc -o sem_wrap sem_wrap.c
cc -o fix_test fix_test.c
echo "built: sem_wrap, fix_test"
