#!/bin/sh
# DF-2803 build (run as root inside the DragonFly guest)
set -e
cd "$(dirname "$0")"
cc -O2 -Wall -o harness harness.c
cc -O2 -Wall -o churn churn.c
cp -f harness churn /tmp/
echo "built: /tmp/harness /tmp/churn"
