diff options
author | Matthieu Coudron <matthieu.coudron@upmc.fr> | 2017-02-27 23:51:45 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-27 23:51:45 +0100 |
commit | 792fbed5f70a20eab9eb4051dd44bc2a6b9f0a2d (patch) | |
tree | 382d10e88281abe96881027a4586e30745206a86 | |
parent | d290c1342117867d4fb1e8ffbe685037553971a5 (diff) | |
download | rneovim-792fbed5f70a20eab9eb4051dd44bc2a6b9f0a2d.tar.gz rneovim-792fbed5f70a20eab9eb4051dd44bc2a6b9f0a2d.tar.bz2 rneovim-792fbed5f70a20eab9eb4051dd44bc2a6b9f0a2d.zip |
build: local.mk.example: `doxygen` target (#6187)
-rw-r--r-- | contrib/local.mk.example | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/contrib/local.mk.example b/contrib/local.mk.example index a0b2d034e1..04f21131b8 100644 --- a/contrib/local.mk.example +++ b/contrib/local.mk.example @@ -62,3 +62,12 @@ # CMAKE_EXTRA_FLAGS += -DLIBVTERM_USE_STATIC=OFF # CMAKE_EXTRA_FLAGS += -DLUAJIT_USE_STATIC=OFF # CMAKE_EXTRA_FLAGS += -DMSGPACK_USE_STATIC=OFF +# +# +# .DEFAULT_GOAL := nvim +# +# Run doxygen over the source code. +# Output will be in build/doxygen +# +# doxygen: +# doxygen src/Doxyfile |