moonscript/Makefile
2015-09-26 18:05:00 -07:00

32 lines
692 B
Makefile

.PHONY: test local compile compile_system watch lint test_safe
test:
busted -p "_spec.moon$$"
test_safe:
busted -p "_spec.lua$$"
local: compile
luarocks make --local moonscript-dev-1.rockspec
global:
sudo luarocks make moonscript-dev-1.rockspec
compile:
lua5.1 bin/moonc moon/ moonscript/
echo "#!/usr/bin/env lua" > bin/moon
lua5.1 bin/moonc -p bin/moon.moon >> bin/moon
echo "-- vim: set filetype=lua:" >> bin/moon
compile_system:
moonc moon/ moonscript/
echo "#!/usr/bin/env lua" > bin/moon
moonc -p bin/moon.moon >> bin/moon
echo "-- vim: set filetype=lua:" >> bin/moon
watch:
moonc moon/ moonscript/ && moonc -w moon/ moonscript/
lint:
moonc -l moonscript moon bin