moonscript/Makefile

42 lines
1.1 KiB
Makefile
Raw Normal View History

2016-01-19 17:26:50 +00:00
LUA ?= lua5.1
LUA_VERSION = $(shell $(LUA) -e 'print(_VERSION:match("%d%.%d"))')
LUAROCKS = luarocks-$(LUA_VERSION)
2016-03-30 20:26:53 +00:00
LUA_PATH_MAKE = $(shell $(LUAROCKS) path --lr-path);./?.lua;./?/init.lua
LUA_CPATH_MAKE = $(shell $(LUAROCKS) path --lr-cpath);./?.so
.PHONY: test local compile compile_system watch lint count show
2011-10-02 05:21:00 +00:00
2015-02-28 19:06:49 +00:00
test:
2015-09-27 03:59:46 +00:00
busted
2015-02-28 22:48:25 +00:00
show:
# LUA $(LUA)
# LUA_VERSION $(LUA_VERSION)
# LUAROCKS $(LUAROCKS)
# LUA_PATH_MAKE $(LUA_PATH_MAKE)
# LUA_CPATH_MAKE $(LUA_CPATH_MAKE)
2015-02-28 22:48:25 +00:00
2014-02-05 21:07:57 +00:00
local: compile
LUA_PATH='$(LUA_PATH_MAKE)' LUA_CPATH='$(LUA_CPATH_MAKE)' $(LUAROCKS) make --local moonscript-dev-1.rockspec
2011-10-02 05:21:00 +00:00
2015-02-28 19:06:49 +00:00
compile:
LUA_PATH='$(LUA_PATH_MAKE)' LUA_CPATH='$(LUA_CPATH_MAKE)' $(LUA) bin/moonc moon/ moonscript/
2015-06-09 04:46:28 +00:00
echo "#!/usr/bin/env lua" > bin/moon
$(LUA) bin/moonc -p bin/moon.moon >> bin/moon
2015-06-09 04:46:28 +00:00
echo "-- vim: set filetype=lua:" >> bin/moon
2015-09-27 01:05:00 +00:00
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:
2013-06-08 06:33:47 +00:00
moonc moon/ moonscript/ && moonc -w moon/ moonscript/
2015-02-28 19:06:49 +00:00
lint:
2015-06-09 05:03:11 +00:00
moonc -l moonscript moon bin
2015-12-06 05:34:32 +00:00
count:
wc -l $$(git ls-files | grep 'moon$$') | sort -n | tail