#!/bin/sh
# DF-0326 build script. Both programs are pure userspace and need no wifi.
set -e
cd "$(dirname "$0")"
echo "+ cc -O2 -Wall -o node_overflow node_overflow.c"
cc -O2 -Wall -o node_overflow node_overflow.c
echo "+ cc -O2 -Wall -o beacon_gen beacon_gen.c"
cc -O2 -Wall -o beacon_gen beacon_gen.c
echo "BUILD_OK"
ls -l node_overflow beacon_gen
