1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 07:27:35 +00:00
bobbylisp/test.sh

14 lines
453 B
Bash
Raw Normal View History

2022-01-27 23:43:32 +00:00
in=$1 # Get first's file name
noext=${in%.*} # Remove extension
name=${noext##*/} # Remove path
2022-01-27 23:39:57 +00:00
make debug
2022-01-27 23:43:32 +00:00
blspc compile $noext.blsp
2022-01-27 23:39:57 +00:00
echo -e "------------------------------------------- SOURCE"
2022-01-27 23:43:32 +00:00
cat $noext.blsp
2022-01-27 23:39:57 +00:00
echo -e "\n----------------------------------------- COMPILED"
2022-01-27 23:43:32 +00:00
cat $noext.bsm
2022-01-27 23:39:57 +00:00
echo -e "------------------------------------------- OUTPUT"
blspc run $name.bsm
echo -e "--------------------------------------------------"