diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2022-06-27 10:02:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-27 01:02:02 -0700 |
| commit | eab8b998e9a964cbb72abb8dedb718326a8093e1 (patch) | |
| tree | bfa818a511dd266095f902d65b03ba67cdba89dc /src/man/Makefile | |
| parent | 8c2b8705445e7f9b2e638f8dbb50b6d715970cda (diff) | |
| download | rneovim-eab8b998e9a964cbb72abb8dedb718326a8093e1.tar.gz rneovim-eab8b998e9a964cbb72abb8dedb718326a8093e1.tar.bz2 rneovim-eab8b998e9a964cbb72abb8dedb718326a8093e1.zip | |
build: move man/ to src/man/ #19119
Problem:
man/ contains source files for manpage generation, it doesn't need to
live at the project root.
Solution:
Move it to src/man/.
Diffstat (limited to 'src/man/Makefile')
| -rw-r--r-- | src/man/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/man/Makefile b/src/man/Makefile new file mode 100644 index 0000000000..3c0457e2ab --- /dev/null +++ b/src/man/Makefile @@ -0,0 +1,5 @@ +MAN = nvim.1 + +lint: + mandoc -Tlint -Wall $(MAN) + igor $(MAN) |