From e7d1e26a6db30304f61a59702cbca2f92d673af0 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Thu, 7 Nov 2019 23:04:18 -0500 Subject: Split Lua and Textadept autocompletion and documentation files. Textadept autocompletion and documentation is now only performed on Textadept files. Modified the LuaDoc doclet to only process "lua.luadoc" on its own, and updated the Makefile rule accordingly. --- src/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index 4d8e8e76..c7f1825f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -264,11 +264,13 @@ manual: ../*.md ../doc/manual.md | ../doc/bombay ../doc/manual.html sed -i -e "s/Textadept Manual/Textadept $(subst _, ,$(version)) Manual/;" \ ../doc/manual.html -luadoc: ../modules ../core ../lexers +luadoc: ../modules ../core ../lexers | ../modules/lua/lua.luadoc cd ../doc && luadoc -d . -t . --doclet markdowndoc $^/lexer.lua sed -i -e "s/Textadept API/Textadept $(subst _, ,$(version)) API/;" \ ../doc/api.html cd ../modules && luadoc -d lua --doclet lua/tadoc $^/lexer.lua + cd ../modules/lua && mv tags ta_tags && mv api ta_api + cd ../modules && luadoc -d lua --doclet lua/tadoc $| # Releases. -- cgit v1.2.3