summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrey Orst <andreyorst@gmail.com>2020-11-08 21:13:47 +0300
committerAndrey Orst <andreyorst@gmail.com>2020-11-08 21:13:47 +0300
commit910bfcf768c2305a6885b0d1f491561d09ebd9ca (patch)
treecd88174ffdb222df8b61ecf68796452580d9dee4 /Makefile
parentcf18cb390b2ba9ac852b52b22beb9fda0d4ab7d2 (diff)
feature(macros): add metadata macros, doc, and some tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0d69d4e..e044f01 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ all: $(LUASOURCES)
${LUASOURCES}: $(FNLSOURCES)
%.lua: %.fnl
- fennel --lua $(LUA) --metadata --compile $< > $@
+ fennel --lua $(LUA) --compile $< > $@
clean:
rm -f *.lua
@@ -39,13 +39,12 @@ luacov-console: | luacov
luacov-stats: test/core.lua test/macros.lua test/fn.lua
@$(foreach test, $?, $(LUA) -lluarocks.loader -lluacov $(test);)
-
help:
@echo "make -- run tests and create lua library" >&2
@echo "make test -- run tests" >&2
@echo "make clean -- remove lua files" >&2
@echo "make luacov -- build coverage report (requires working tests)" >&2
- @echo "make luacov-console -- build coverage report (requires working tests)" >&2
+ @echo "make luacov-console -- build coverage report for luacov-console (requires working tests)" >&2
@echo "make help -- print this message and exit" >&2
-include .depend.mk