diff options
author | 2019-11-07 23:04:18 -0500 | |
---|---|---|
committer | 2019-11-07 23:04:18 -0500 | |
commit | e7d1e26a6db30304f61a59702cbca2f92d673af0 (patch) | |
tree | f35310bc03ac997178e00c50ee465fe0c8f4958d /src/Makefile | |
parent | 8778e3c1864dcd8ef1ae6669be446bb1b2ee2d18 (diff) | |
download | textadept-e7d1e26a6db30304f61a59702cbca2f92d673af0.tar.gz textadept-e7d1e26a6db30304f61a59702cbca2f92d673af0.zip |
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.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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. |