go-mtree/Makefile
Vincent Batts 85eacd2163
Makefile: add easy target for validation
Hopefully soon adding integration tests for the cli

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2016-11-05 12:43:00 -04:00

35 lines
477 B
Makefile

SOURCE_FILES := $(shell find . -type f -name "*.go")
default: validation build
.PHONY: validation
validation: test lint vet
.PHONY: test
test: .test
.test: $(SOURCE_FILES)
go test -v ./... && touch $@
.PHONY: lint
lint: .lint
.lint: $(SOURCE_FILES)
golint -set_exit_status ./... && touch $@
.PHONY: vet
vet: .vet
.vet: $(SOURCE_FILES)
go vet ./... && touch $@
.PHONY: build
build: gomtree
gomtree: $(SOURCE_FILES)
go build ./cmd/gomtree
clean:
rm -rf gomtree