Codebase list golang-github-dcso-fluxline / debian/0.0_git20180222.25ae683-1_bpo9+1 Makefile
debian/0.0_git20180222.25ae683-1_bpo9+1

Tree @debian/0.0_git20180222.25ae683-1_bpo9+1 (Download .tar.gz)

Makefile @debian/0.0_git20180222.25ae683-1_bpo9+1

1d82cc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
## simple makefile to log workflow
.PHONY: all test clean build install

GOFLAGS ?= $(GOFLAGS:)

all: install test


build:
	@go build $(GOFLAGS) ./...

install:
	@go get $(GOFLAGS) ./...

test: install
	@go vet $(GOFLAGS) ./...
	@go test -cover $(GOFLAGS) ./...

bench: install
	@go test -run=NONE -bench=. $(GOFLAGS) ./...

clean:
	@go clean $(GOFLAGS) -i ./...

## EOF