From 90b73630dd9ac7410e8ed5889b200e278ef9b7d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Vavru=C5=A1a?= Date: Sat, 25 Nov 2017 17:03:48 -0800 Subject: [PATCH] build: make lint depends on autogenerated Lua files Lint should always render the .lua from .lua.in files before checking. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86064e0b0..3af15b389 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ check: all tests clean: contrib-clean lib-clean daemon-clean client-clean modules-clean \ tests-clean doc-clean bench-clean doc: doc-html -lint: +lint: $(patsubst %.lua.in,%.lua,$(wildcard */*/*.lua.in)) luacheck --codes --formatter TAP . coverage: $(wildcard */*/luacov.stats.out) @echo "# C coverage in gcov.c.info" -- 2.47.2