1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 08:50:24 +00:00
QB64-PE/.ci/compile.sh
2022-06-11 22:47:06 -04:00

23 lines
355 B
Bash
Executable file

#!/bin/bash
os=$1
./qb64_bootstrap -x -w source/qb64.bas
SUCCESS=$?
rm qb64_bootstrap
rm internal/source/*
rm internal/temp/debug_* internal/temp/recompile_*
rm internal/temp/qb64.sym
rm internal/temp/qb64_bootstrap.sym
mv internal/temp/* internal/source/
# Build libqb test executables
make -j8 OS=$os build-tests
make clean OS=$os
exit $SUCCESS