DragonFlyBSD Kernel Audit
DF-0789 / build.sh
← back to finding ↓ download raw
1
2
3
4
5
6
7
#!/bin/sh
# build.sh - build the DF-0789 harness
set -e
cd "$(dirname "$0")"
echo "[build] cc -O2 -o harness harness.c"
cc -O2 -o harness harness.c
echo "[build] OK: ./harness"