#!/bin/sh
# build.sh -- compile the userspace harness proving the iscsi_r2t OOB read.
set -e
cd "$(dirname "$0")"
echo "+ cc -O2 -Wall -o harness harness.c"
cc -O2 -Wall -o harness harness.c
echo "+ build ok"
ls -l harness
