Improved documentation and compile script.
This commit is contained in:
parent
611a8c87f3
commit
0987fde8e7
@ -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
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
--
|
||||||
|
-- This file contains the ANSI escapes for console colors
|
||||||
|
--
|
||||||
|
|
||||||
local colors = {
|
local colors = {
|
||||||
-- attributes
|
-- attributes
|
||||||
reset = 0,
|
reset = 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user