11 lines
134 B
Makefile
11 lines
134 B
Makefile
|
.PHONY: wireformat
|
||
|
|
||
|
bin_path=./bin
|
||
|
|
||
|
wireformat:
|
||
|
go build -o $(bin_path)/wireformat cmd/wireformat/wireformat.go
|
||
|
|
||
|
fmt:
|
||
|
go fmt ./...
|
||
|
|