From 83183122f180ce0fdbf3b5c1c8ff828d762348a8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 4 Jun 2018 20:41:20 -0700 Subject: Optimizations and cleanup. Build script now fails on first error and uses the precompiled versions it has just compiled. --- compile_lib.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'compile_lib.sh') diff --git a/compile_lib.sh b/compile_lib.sh index 9bf0487..fa932b3 100755 --- a/compile_lib.sh +++ b/compile_lib.sh @@ -1,14 +1,16 @@ #!/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. +set -e moonc *.moon +rm -f core/*.lua lib/*.lua for file in core/*.nom; do printf "Compiling $file ..." - ./nomsu.moon -o "core/$(basename $file .nom).lua" $file + lua ./nomsu.lua -O -o "core/$(basename $file .nom).lua" $file echo "done." done for file in lib/*.nom; do printf "Compiling $file ..." - ./nomsu.moon -o "lib/$(basename $file .nom).lua" $file + lua ./nomsu.lua -O -o "lib/$(basename $file .nom).lua" $file echo "done." done -- cgit v1.2.3