15 lines
374 B
Bash
15 lines
374 B
Bash
#!bin/bash
|
|
|
|
set -eux
|
|
|
|
|
|
for name in tuples canvas matrices transformations rays intersections shapes spheres planes lights materials world camera patterns; do
|
|
gcc -g -gdwarf-5 \
|
|
-Wall -Werror -Wfatal-errors \
|
|
-Wno-error=unused-variable \
|
|
-I. \
|
|
-DTEST \
|
|
test/test_${name}.c -o test/test_${name} -O0 -lm
|
|
./test/test_${name}
|
|
done
|