summaryrefslogtreecommitdiff
path: root/build.sh
blob: 007bdddf36b060231d08b0593bb6058942e4ba82 (plain)
1
2
3
4
5
6
7
8
9
10
11
if [ ! -d "bin" ]; then
    mkdir bin
fi

CC="gcc"

if [ ! -z "tcc -v" ]; then
    CC="tcc"
fi

$CC -Wall -Wextra -pedantic -lm -o bin/linalg_debug debug.c tests.c utils.c matrix.c vector.c