diff options
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/Makefile b/doc/Makefile index f24fc2551..02b3258f8 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -8,15 +8,15 @@ all: man man: rspamd.8 rspamc.1 rspamadm.1 rspamd.8: rspamd.8.md - $(PANDOC) -s -f markdown -t man -o rspamd.8 rspamd.8.md + $(PANDOC) -s -f markdown -t man -o rspamd.8 rspamd.8.md rspamc.1: rspamc.1.md $(PANDOC) -s -f markdown -t man -o rspamc.1 rspamc.1.md rspamadm.1: rspamadm.1.md $(PANDOC) -s -f markdown -t man -o rspamadm.1 rspamadm.1.md - + lua-doc: lua_regexp lua_ip lua_config lua_task lua_ucl lua_http lua_trie \ lua_dns lua_redis lua_upstream lua_expression lua_mimepart lua_logger lua_url \ - lua_tcp lua_mempool lua_html lua_util + lua_tcp lua_mempool lua_html lua_util lua_fann lua_regexp: ../src/lua/lua_regexp.c $(LUADOC) < ../src/lua/lua_regexp.c > markdown/lua/regexp.md @@ -53,4 +53,6 @@ lua_mempool: ../src/lua/lua_mempool.c lua_html: ../src/lua/lua_html.c $(LUADOC) < ../src/lua/lua_html.c > markdown/lua/html.md lua_util: ../src/lua/lua_util.c - $(LUADOC) < ../src/lua/lua_util.c > markdown/lua/util.md
\ No newline at end of file + $(LUADOC) < ../src/lua/lua_util.c > markdown/lua/util.md +lua_fann: ../src/lua/lua_fann.c + $(LUADOC) < ../src/lua/lua_fann.c > markdown/lua/fann.md |