mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
LUA ?= lua5.1
|
|
LUA_VERSION = $(shell $(LUA) -e 'print(_VERSION:match("%d%.%d"))')
|
|
LUAROCKS = luarocks --lua-version=$(LUA_VERSION)
|
|
LUA_PATH_MAKE = $(shell $(LUAROCKS) path --lr-path);./?.lua;./?/init.lua
|
|
LUA_CPATH_MAKE = $(shell $(LUAROCKS) path --lr-cpath);./?.so
|
|
|
|
.PHONY: test local build watch lint count show
|
|
|
|
build:
|
|
LUA_PATH='$(LUA_PATH_MAKE)' LUA_CPATH='$(LUA_CPATH_MAKE)' $(LUA) bin/moonc moon/ moonscript/
|
|
echo "#!/usr/bin/env lua" > bin/moon
|
|
$(LUA) bin/moonc -p bin/moon.moon >> bin/moon
|
|
echo "-- vim: set filetype=lua:" >> bin/moon
|
|
|
|
|
|
# This will rebuild MoonScript from the (hopefully working) system installation of moonc
|
|
build_from_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
|
|
|
|
show:
|
|
# LUA $(LUA)
|
|
# LUA_VERSION $(LUA_VERSION)
|
|
# LUAROCKS $(LUAROCKS)
|
|
# LUA_PATH_MAKE $(LUA_PATH_MAKE)
|
|
# LUA_CPATH_MAKE $(LUA_CPATH_MAKE)
|
|
|
|
test: build
|
|
busted
|
|
|
|
build_test_outputs: build
|
|
BUILD=1 busted spec/lang_spec.moon
|
|
|
|
local: build
|
|
LUA_PATH='$(LUA_PATH_MAKE)' LUA_CPATH='$(LUA_CPATH_MAKE)' $(LUAROCKS) make --local moonscript-dev-1.rockspec
|
|
|
|
watch:
|
|
moonc moon/ moonscript/ && moonc -w moon/ moonscript/
|
|
|
|
lint:
|
|
moonc -l moonscript moon bin
|
|
|
|
count:
|
|
wc -l $$(git ls-files | grep 'moon$$') | sort -n | tail
|