diff options
Diffstat (limited to 'vendor/github.com/moricho/tparallel/Makefile')
| -rw-r--r-- | vendor/github.com/moricho/tparallel/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vendor/github.com/moricho/tparallel/Makefile b/vendor/github.com/moricho/tparallel/Makefile new file mode 100644 index 000000000..fb3588069 --- /dev/null +++ b/vendor/github.com/moricho/tparallel/Makefile @@ -0,0 +1,13 @@ +all: build + +.PHONY: build +build: + go build -o tparallel ./cmd/tparallel + +.PHONY: build_race +build_race: + go build -race -o tparallel ./cmd/tparallel + +.PHONY: test +test: build_race + go test -v ./... |
