You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 199B

9 years ago
9 years ago
9 years ago
123456789101112131415
  1. .PHONY: all test clean build install
  2. GOFLAGS ?= $(GOFLAGS:)
  3. all: test build
  4. build:
  5. @go get -v ./...
  6. test: build
  7. @go test -v ./...
  8. bench: install
  9. @go test -run=NONE -bench=. $(GOFLAGS) ./...