Skip to content

Commit

Permalink
Extend go variables even more
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfonso Acosta committed Feb 25, 2016
1 parent 6b17a23 commit 23b97ab
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions experimental/fixprobe/Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
.PHONY: all vet lint build test clean

GO ?= env GO15VENDOREXPERIMENT=1 GOGC=off go

all: build test vet lint

vet:
go vet ./...
$(GO) vet ./...

lint:
golint .

build:
go build
$(GO) build

test:
go test
env -u GOGC $(GO) test

clean:
go clean
$(GO) clean

0 comments on commit 23b97ab

Please sign in to comment.