diff options
author | John Szakmeister <john@szakmeister.net> | 2014-06-18 16:21:45 -0400 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-06-18 16:21:45 -0400 |
commit | f870982634e03262a928ff8fd5d610b9e7ff8e06 (patch) | |
tree | f9b6a6b416a0a5989a749b6436296ca0ea348690 /src | |
parent | 090870ca047dee8d136f863ba742922fc265d6f4 (diff) | |
parent | 13027025862aa1a70accba6376c3d38b26ae13d9 (diff) | |
download | rneovim-f870982634e03262a928ff8fd5d610b9e7ff8e06.tar.gz rneovim-f870982634e03262a928ff8fd5d610b9e7ff8e06.tar.bz2 rneovim-f870982634e03262a928ff8fd5d610b9e7ff8e06.zip |
Merge pull request #845 'Testdir and top-level Makefile improvements'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 5582a9f159..c93706fce2 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -8,7 +8,7 @@ VIMPROG := ../../../build/bin/nvim SCRIPTS := test_autoformat_join.out \ test_eval.out \ - test1.out test2.out test3.out test4.out test5.out \ + test2.out test3.out test4.out test5.out \ test6.out test7.out test8.out test9.out test10.out \ test11.out test12.out test13.out test14.out test15.out \ test17.out test18.out test19.out test20.out \ @@ -80,7 +80,9 @@ report: echo ALL DONE; \ fi" -$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) +test1.out: $(VIMPROG) + +$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) test1.out RM_ON_RUN := test.out X* viminfo RM_ON_START := tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok |