AST3_C/build.sh

13 lines
232 B
Bash
Raw Normal View History

#!/bin/sh
echo "making setlevel.c from editor"
rm src/setlevel.c
2020-11-14 18:23:16 +01:00
python3 compile_level.py
echo "done"
echo "making times.c from times.lvl"
rm src/times.c
2020-11-14 18:23:16 +01:00
python3 time.py
echo "done"
echo "building for cg"
fxsdk build-cg
echo "done"