1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00
bobbylisp/test.sh

14 lines
453 B
Bash
Raw Normal View History

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