diff options
Diffstat (limited to 'bootstrap/build.sh')
| -rwxr-xr-x | bootstrap/build.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bootstrap/build.sh b/bootstrap/build.sh new file mode 100755 index 0000000..741f3aa --- /dev/null +++ b/bootstrap/build.sh @@ -0,0 +1,10 @@ +#!/bin/env sh + +if [ x"$CC" == x ]; then + export CC=cc +fi +export CFLAGS="-Wall -Wno-multichar -g" + +set -x + +$CC $CFLAGS -o cff0 *.c |