Add math library
This commit is contained in:
parent
5f44936dcd
commit
9f9cc2308d
3
compile
3
compile
@ -4,7 +4,8 @@ CC=clang
|
||||
WAPP_INCLUDE="$(find intern/wapp/src -type d | xargs -I{} echo -n "-I{} ")"
|
||||
WAPP_SRC="$(find intern/wapp/src -type f -name "*.c" | xargs -I{} echo -n "{} ")"
|
||||
CFLAGS="-g -Isrc $WAPP_INCLUDE"
|
||||
LIBS="-lm"
|
||||
SRC="src/*.c $WAPP_SRC"
|
||||
OUT=tiny
|
||||
|
||||
(set -x ; $CC $CFLAGS $SRC -o $OUT)
|
||||
(set -x ; $CC $CFLAGS $LIBS $SRC -o $OUT)
|
||||
|
Loading…
Reference in New Issue
Block a user