10 lines
99 B
Makefile
10 lines
99 B
Makefile
all:
|
|
@mkdir -p bin/
|
|
go get -d
|
|
go build -a -o bin/packer
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
.PHONY: all test
|