#!/bin/sh
# DF-0761 build: compile the PoC.  Pure C, no special includes — the constants
# we need are defined in-file (IP_FW_X=49, opcodes from ip_fw3.h) to keep this
# buildable on a stock master-DEV install without kernel headers installed
# in /usr/include.
set -e
cd "$(dirname "$0")"
echo "+ cc -O0 -g -o df0761 df0761.c"
cc -O0 -g -o df0761 df0761.c
echo "BUILD_EXIT=0"
ls -l df0761
