#!/bin/sh
# DF-0518 build script — compiles the ICMP-error-flood demonstrator.
# Run on guest as the maxx user.
set -e
cd "$(dirname "$0")"
cc -O2 -o df0518 df0518.c
echo "BUILD_EXIT=$?"
ls -l df0518
