#!/bin/sh
# DF-0869 PoC build: compile the trigger.
# Run as the unprivileged user from the PoC directory.
set -e
cd "$(dirname "$0")"

cc -o trigger trigger.c
echo "BUILD_OK: $(pwd)/trigger"
