github.com/dustinrc/deis@v1.10.1-0.20150917223407-0894a5fb979e/contrib/bumpver/Makefile (about)

     1  build:
     2  	CGO_ENABLED=0 godep go build -a -installsuffix cgo -ldflags '-s' .
     3  
     4  upx:
     5  	upx -9 --brute bumpver && upx -t bumpver
     6  
     7  clean:
     8  	rm -f bumpver
     9  
    10  test-style:
    11  	go vet -x ./...
    12  	-golint .
    13  
    14  test: test-style
    15  	godep go test -v -cover ./...