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-01-10 13:52:41 -08:00
|
|
|
for file in $(find lib/ -name "*.lua") ; do
|
2017-10-13 16:10:23 -07:00
|
|
|
rm $file
|
|
|
|
done
|
|
|
|
fi
|
2017-12-11 17:53:23 -08:00
|
|
|
|
2018-01-16 01:45:43 -08:00
|
|
|
echo -n "Compiling lib/core.nom ..."
|
|
|
|
./nomsu.moon -c lib/core.nom
|
|
|
|
echo "done."
|
2018-01-12 16:33:11 -08:00
|
|
|
for file in $(cat lib/core.nom | lua -e "for filename in io.read('*a'):gmatch('use \"([^\"]*)\"') do print(filename) end") ; do
|
2018-01-16 01:45:43 -08:00
|
|
|
echo -n "Compiling $file ..."
|
|
|
|
./nomsu.moon -c $file
|
|
|
|
echo "done."
|
2017-10-08 18:23:48 -07:00
|
|
|
done
|