nomsu/compile_lib.sh

34 lines
734 B
Bash
Raw Normal View History

#!/bin/sh
# This file is a script that converts the .nom files in lib/ into slightly more optimized
# precompiled versions that are only lua> ".." and =lua ".." bits which are faster to load.
FLUSH=false
while getopts ":f" opt; do
case $opt in
f)
FLUSH=true
echo "flushing..."
;;
esac
done
if [ "$FLUSH" = true ] ; then
rm core/*.lua
rm lib/*.lua
2018-03-06 15:17:47 -08:00
#rm tests/*.lua
fi
for file in core/*.nom; do
2018-01-24 01:37:52 -08:00
printf "Compiling $file ..."
2018-01-16 01:45:43 -08:00
./nomsu.moon -c $file
echo "done."
done
for file in lib/*.nom; do
printf "Compiling $file ..."
./nomsu.moon -c $file
echo "done."
done
2018-03-06 15:17:47 -08:00
#for file in tests/*.nom; do
# printf "Compiling $file ..."
# ./nomsu.moon -c $file
# echo "done."
#done