mirror of
https://github.com/azur1s/bobbylisp.git
synced 2024-10-16 02:37:40 -05:00
13 lines
414 B
Bash
13 lines
414 B
Bash
|
in=$1 # Get first's file name
|
||
|
name=${in%.*} # Remove extension
|
||
|
|
||
|
make debug
|
||
|
blspc compile $name.blsp
|
||
|
echo -e "------------------------------------------- SOURCE"
|
||
|
cat ./$name.blsp
|
||
|
echo -e "\n----------------------------------------- COMPILED"
|
||
|
cat ./$name.bsm
|
||
|
echo -e "------------------------------------------- OUTPUT"
|
||
|
blspc run $name.bsm
|
||
|
echo -e "--------------------------------------------------"
|