We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca35390 commit 467d4bbCopy full SHA for 467d4bb
Makefile
@@ -1,3 +1,5 @@
1
+.PHONY: build test docker/build
2
+
3
OUT_BIN := connperf
4
GO := $(shell which go)
5
GO_SRC := $(shell find . -type f -name '*.go')
@@ -11,9 +13,8 @@ build: $(OUT_BIN)
11
13
$(OUT_BIN): $(filter-out *_test.go,$(GO_SRC))
12
14
go build -o $(OUT_BIN)
15
-.PHONY: docker test
-docker:
16
- $(CMD_DOCKER) build -t $(OUT_DOCKER):latest .
17
-
18
test:
19
- $(GO) test ./...
+ $(GO) test -v ./...
+docker/build:
20
+ $(CMD_DOCKER) build -t $(OUT_DOCKER):latest .
0 commit comments