fennel-ls/Makefile
2022-07-29 00:08:14 -05:00

14 lines
313 B
Makefile

STATIC_LUA_LIB=/usr/lib/liblua.so.5.4
LUA_INCLUDE_PATH=$(shell lua5.4 -e 'print(package.cpath:match("[^;]+"))')
SOURCES=$(wildcard *.fnl)
SOURCES+=$(wildcard fls/*.fnl)
.PHONY: test
fennel-ls: $(SOURCES)
fennel --compile-binary main.fnl fennel-ls $(STATIC_LUA_LIB) $(LUA_INCLUDE_PATH)
test:
fennel test.fnl