summaryrefslogtreecommitdiff
path: root/build.sh
blob: ca04100f9763ab524cd37bfde007f9f0108a427d (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
INPUT="main.c u_platform.c u_math.c u_misc.c u_world.c u_ray.c player.c"
OUTPUT="rrt"
FLAGS_CC="-Wall -O3 -fno-diagnostics-show-caret -Wno-unused-result -ffast-math -march=native"
FLAGS_LD="-lSDL2 -lSDL2_image -lrt -lm"

echo "-------------------------"
gcc $INPUT -o $OUTPUT $FLAGS_CC $FLAGS_LD