2017-10-08 18:23:48 -07:00
|
|
|
#!/bin/sh
|
2017-12-18 16:45:46 -08:00
|
|
|
# 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.
|
2017-10-13 16:10:23 -07:00
|
|
|
FLUSH=false
|
|
|
|
while getopts ":f" opt; do
|
|
|
|
case $opt in
|
|
|
|
f)
|
|
|
|
FLUSH=true
|
|
|
|
echo "flushing..."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
if [ "$FLUSH" = true ] ; then
|
2018-02-02 15:48:28 -08:00
|
|
|
rm core/*.lua
|
|
|
|
rm lib/*.lua
|
2018-03-06 15:17:47 -08:00
|
|
|
#rm tests/*.lua
|
2017-10-13 16:10:23 -07:00
|
|
|
fi
|
2017-12-11 17:53:23 -08:00
|
|
|
|
2018-02-02 15:48:28 -08:00
|
|
|
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."
|
2017-10-08 18:23:48 -07:00
|
|
|
done
|
2018-02-02 15:48:28 -08:00
|
|
|
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
|