#!/bin/sh
# DF-0599 build: compile the trigger as a static-ish userland binary.
set -e
cd "$(dirname "$0")"
cc -Wall -O2 -o panic panic.c
echo "built: $(ls -l panic)"
