github.com/greenboxal/deis@v1.12.1/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 ./...