mirror of
https://github.com/cosinekitty/astronomy.git
synced 2026-06-03 13:58:39 -04:00
14 lines
289 B
Bash
Executable File
14 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
Fail()
|
|
{
|
|
echo "FATAL($0): $1"
|
|
exit 1
|
|
}
|
|
|
|
for name in moonphase positions riseset seasons culminate; do
|
|
gcc -Wall -Werror -o ${name} -I../../source/c ../../source/c/astronomy.c astro_demo_common.c ${name}.c -lm ||
|
|
Fail "Error building ${name}.c"
|
|
done
|
|
|
|
exit 0
|