DF-0615 / build.sh
#!/bin/sh # DF-0615 build script. Compile the reader, mutator, and one-shot capture # helpers. Run as the unprivileged build user (maxx) — no privilege needed # to compile. set -e cd "$(dirname "$0")" cc -O2 -o reader reader.c cc -O2 -o mutator mutator.c cc -O2 -o capture capture.c echo "built: reader mutator capture" |