summaryrefslogtreecommitdiff
path: root/libs/pwyazh/build.sh
blob: b8ab961befde6f562074e32e0a9c1b26baa4ed41 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
OPTS='-DENABLE_ASSERT=1'
CFLAGS='-g -Wall -Wextra'
LIBS='-lm'

set -x

clang -o example $CFLAGS $OPTS example.c $LIBS