diff options
| author | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-22 19:43:18 +0300 |
|---|---|---|
| committer | Andrey Listopadov <andreyorst@gmail.com> | 2021-02-22 19:43:18 +0300 |
| commit | 129a3a5d48f429de174faa6368e9625dcfb65f9e (patch) | |
| tree | db7e24509dd5a1b294c678f4f6bcd6ff3c9fd70d /Makefile | |
| parent | e9b448d5fd3f074ee9de5066953c0becb891db19 (diff) | |
feat: add partition take and nthrest functions
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -8,7 +8,7 @@ LUATESTS = $(FNLTESTS:.fnl=.lua) LUA_EXECUTABLES ?= lua luajit FENNELDOC := $(shell command -v fenneldoc) -.PHONY: build clean distclean help test luacov luacov-console fenneldoc $(LUA_EXECUTABLES) +.PHONY: build clean distclean help test luacov luacov-console doc $(LUA_EXECUTABLES) build: $(LUASOURCES) @@ -48,11 +48,12 @@ luacov-console: luacov luacov-console . @$(foreach test, $(LUATESTS), mv $(test).tmp $(test);) -fenneldoc: +doc: fenneldoc $(FNLDOCS) help: - @echo "make -- run tests and create lua library" >&2 + @echo "make -- create lua library" >&2 + @echo "make doc -- generate documentation files (requires fenneldoc)" >&2 @echo "make test -- run tests" >&2 @echo "make clean -- remove lua files" >&2 @echo "make distclean -- remove all unnecessary files" >&2 |