#!/bin/sh
# DF-0726 build — compile the unprivileged reader.
set -e
cd "$(dirname "$0")"
cc -O2 -o reader reader.c
echo "BUILD_OK"
ls -l reader
