Lazyc/buildExamples.sh

6 lines
97 B
Bash
Executable file

#!/bin/sh
set -e
: "${CC:=cc}"
for f in examples/*.c; do
"$CC" -std=c99 "$f" -o "${f%.c}"
done