summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-09 21:10:29 +0300
committerPaul Buetow <paul@buetow.org>2021-10-10 13:36:41 +0300
commit97747ea0f3178f7f5890512d483fdccaa82846b0 (patch)
tree9ff1335ca26afc90e55fd6de416457e252d75a35 /Makefile
parent7a7169791a64190e1002e38bc9c04ad0d5c1ce1f (diff)
vetting and linting and some code restyling
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6a0f828..543b29e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
GO ?= go
-all: build test
+all: build
build: dserver dcat dgrep dmap dtail dtailhealthcheck
dserver:
ifndef USE_ACL
@@ -43,7 +43,7 @@ lint:
find . -type d | while read dir; do \
echo golint $$dir; \
golint $$dir; \
- done
+ done | grep -F .go:
test:
${GO} clean -testcache
ifndef USE_ACL