summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrey Listopadov <andreyorst@gmail.com>2021-02-22 19:43:18 +0300
committerAndrey Listopadov <andreyorst@gmail.com>2021-02-22 19:43:18 +0300
commit129a3a5d48f429de174faa6368e9625dcfb65f9e (patch)
treedb7e24509dd5a1b294c678f4f6bcd6ff3c9fd70d /Makefile
parente9b448d5fd3f074ee9de5066953c0becb891db19 (diff)
feat: add partition take and nthrest functions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 25fd154..43682e5 100644
--- a/Makefile
+++ b/Makefile
@@ -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