Improved documentation and compile script.

This commit is contained in:
Bruce Hill 2017-12-18 16:45:46 -08:00
parent 611a8c87f3
commit 0987fde8e7
3 changed files with 14 additions and 5 deletions

View File

@ -1,4 +1,6 @@
#!/bin/sh #!/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 FLUSH=false
while getopts ":f" opt; do while getopts ":f" opt; do
case $opt in case $opt in
@ -9,15 +11,15 @@ while getopts ":f" opt; do
esac esac
done done
if [ "$FLUSH" = true ] ; then if [ "$FLUSH" = true ] ; then
for file in $(find lib/ -name "*.nom.lua") ; do for file in $(find lib/ -name "*compiled.nom") ; do
rm $file rm $file
done done
fi fi
for file in $(cat compile_order.txt) ; do for file in $(cat lib/core.nom | lua -e "for filename in io.read('*a'):gmatch('require \"([^\"]*)\"') do print(filename) end") ; do
luafile="$file.lua" compilefile="${file/\.nom/.compiled.nom}"
if [ ! -e "$luafile" ] || [ "$file" -nt "$luafile" ] ; then if [ ! -e "$compilefile" ] || [ "$file" -nt "$compilefile" ] ; then
echo "Compiling $file into $luafile" echo "Compiling $file into $compilefile"
./nomsu.moon -c $file ./nomsu.moon -c $file
fi fi
done done

View File

@ -1,3 +1,7 @@
--
-- This file contains the ANSI escapes for console colors
--
local colors = { local colors = {
-- attributes -- attributes
reset = 0, reset = 0,

View File

@ -1,3 +1,6 @@
--
-- A collection of helper utility functions
--
local function is_list(t) local function is_list(t)
if type(t) ~= 'table' then if type(t) ~= 'table' then