1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 19:50:22 +00:00
QB64-PE/.ci/compile.sh

17 lines
287 B
Bash
Raw Normal View History

2020-01-03 12:29:13 +00:00
#!/bin/bash
2021-01-15 00:39:28 +00:00
./qb64_bootstrap -x -w source/qb64.bas
2020-01-04 12:09:53 +00:00
SUCCESS=$?
2022-04-27 22:55:16 +00:00
2020-01-03 12:29:13 +00:00
rm qb64_bootstrap
rm internal/source/*
2022-04-27 22:55:16 +00:00
rm internal/temp/debug_* internal/temp/recompile_*
rm internal/temp/qb64.sym
rm internal/temp/qb64_bootstrap.sym
2022-04-27 22:55:16 +00:00
mv internal/temp/* internal/source/
2022-04-27 22:55:16 +00:00
2022-04-29 05:02:17 +00:00
make clean OS=lnx
2022-04-27 22:55:16 +00:00
2020-01-04 12:09:53 +00:00
exit $SUCCESS