#!/bin/sh
# DF-0915 build: harness (deterministic proof) + fused (live kernel trigger)
set -e
cd "$(dirname "$0")"
echo "Building harness..."
cc -O2 -Wall -o harness harness.c
echo "Building fused (live FUSE daemon)..."
cc -O2 -Wall -o fused fused.c
echo "BUILD_EXIT=0"
ls -l harness fused
