diff options
author | James McCoy <jamessan@jamessan.com> | 2016-05-16 23:09:23 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-05-17 00:04:40 -0400 |
commit | 5bd65e31da488e2e9056c5caf25630d1086bfacc (patch) | |
tree | 3b0608a324d1346fa98fe8bc7b349788adbddf7a | |
parent | c3c409c70f46498e2cb549905cacfa3cf49c1383 (diff) | |
download | rneovim-5bd65e31da488e2e9056c5caf25630d1086bfacc.tar.gz rneovim-5bd65e31da488e2e9056c5caf25630d1086bfacc.tar.bz2 rneovim-5bd65e31da488e2e9056c5caf25630d1086bfacc.zip |
Makefile: Ensure tags are generated before running oldtest
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -85,9 +85,12 @@ endif mkdir -p build touch $@ -oldtest: | nvim +oldtest: | nvim tags +$(SINGLE_MAKE) -C src/nvim/testdir $(MAKEOVERRIDES) +tags: | nvim + +$(BUILD_CMD) -C build runtime/doc/tags + functionaltest: | nvim +$(BUILD_CMD) -C build functionaltest |