summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2019-03-02 07:38:12 +0700
committerShulhan <ms@kilabit.info>2019-03-02 07:38:12 +0700
commita4f6569c57d3dbb49f4d40b260ccaddea0348231 (patch)
tree0a99455bd179faaa7934ece16f5a4e4949182b04
parent9630b06bb5cbfaa1bbbd3a88a25fefbb4e1bec69 (diff)
downloadrescached-a4f6569c57d3dbb49f4d40b260ccaddea0348231.tar.xz
make: remove lint task from build and debug
lint-ing task optional actually, but it will display a warning when building binary without linting tools exist in user environment.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2bf5f36..a22fdba 100644
--- a/Makefile
+++ b/Makefile
@@ -27,10 +27,10 @@ RESOLVER_MAN:=doc/resolver.1.gz
RESOLVERBENCH_BIN:=resolverbench
-build: test lint $(RESCACHED_BIN) $(RESOLVER_BIN) $(RESOLVERBENCH_BIN) doc
+build: test $(RESCACHED_BIN) $(RESOLVER_BIN) $(RESOLVERBENCH_BIN) doc
debug: DEBUG=-race -v
-debug: test lint $(RESCACHED_BIN) $(RESOLVER_BIN) $(RESOLVERBENCH_BIN) doc
+debug: test $(RESCACHED_BIN) $(RESOLVER_BIN) $(RESOLVERBENCH_BIN) doc
test: $(COVER_HTML)