mirror of
https://github.com/cosinekitty/astronomy.git
synced 2025-12-26 17:19:41 -05:00
21 lines
392 B
Bash
Executable File
21 lines
392 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$1" != "skipgen" ]]; then
|
|
pushd .. > /dev/null
|
|
./build || exit $?
|
|
./generate source || exit $?
|
|
popd > /dev/null
|
|
fi
|
|
|
|
gcc -Wall -Werror -o gravsim_test \
|
|
-I .. \
|
|
-I ../../source/c/ \
|
|
-I ../top2013/ \
|
|
-I ../vsop/ \
|
|
../../source/c/astronomy.c \
|
|
../top2013/top2013.c \
|
|
gravsim_test.c -lm || exit $?
|
|
|
|
./gravsim_test || exit $?
|
|
exit 0
|