aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-05-11 09:09:25 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-05-11 09:09:25 -0400
commita5a1768918286ef3ac4181b45b8b7eafb37767ac (patch)
treebc56daea2f81137e9359c85b0838ae3722d68cd3
parent80e84550b2960c0be6ea78e795cb6aa0a7fecdae (diff)
parent2a74cba614186f6f84cd2b9bc37864e4e11c430f (diff)
downloadrneovim-a5a1768918286ef3ac4181b45b8b7eafb37767ac.tar.gz
rneovim-a5a1768918286ef3ac4181b45b8b7eafb37767ac.tar.bz2
rneovim-a5a1768918286ef3ac4181b45b8b7eafb37767ac.zip
Merge pull request #4727 from bfredl/citestlint
travis: run testlint in lint build
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 097832748b..54f7edcf04 100644
--- a/Makefile
+++ b/Makefile
@@ -94,7 +94,7 @@ functionaltest: | nvim
functionaltest-lua: | nvim
+$(BUILD_CMD) -C build functionaltest-lua
-testlint: | nvim
+testlint: | build/.ran-cmake deps
$(BUILD_CMD) -C build testlint
unittest: | nvim
@@ -115,10 +115,12 @@ distclean: clean
install: | nvim
+$(BUILD_CMD) -C build install
-lint:
+clint:
cmake -DLINT_PRG=./clint.py \
-DLINT_DIR=src \
-DLINT_SUPPRESS_URL="$(DOC_DOWNLOAD_URL_BASE)$(CLINT_ERRORS_FILE_PATH)" \
-P cmake/RunLint.cmake
-.PHONY: test testlint functionaltest unittest lint clean distclean nvim libnvim cmake deps install
+lint: clint testlint
+
+.PHONY: test testlint functionaltest unittest lint clint clean distclean nvim libnvim cmake deps install