diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-08 21:13:47 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-08 21:13:47 +0300 |
| commit | 910bfcf768c2305a6885b0d1f491561d09ebd9ca (patch) | |
| tree | cd88174ffdb222df8b61ecf68796452580d9dee4 /Makefile | |
| parent | cf18cb390b2ba9ac852b52b22beb9fda0d4ab7d2 (diff) | |
feature(macros): add metadata macros, doc, and some tests
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |