#!/bin/sh
# DF-0220 build: compile the probe and the reference keystream computer.
# Runs on the DragonFly guest as the unprivileged user.
set -e
cd "$(dirname "$0")"
cc -O2 -o rand_probe rand_probe.c
cc -O2 -o ref_keystream ref_keystream.c
echo "BUILD_OK: rand_probe ref_keystream"