telebit/vendor/github.com/denisbrodbeck/machineid/makefile

13 lines
162 B
Makefile
Raw Normal View History

2020-05-27 09:57:03 +00:00
.PHONY: build clean default test
build: clean
@go build -o machineid ./cmd/machineid/main.go
clean:
@rm -rf ./machineid
test:
go test ./...
default: build