protgen/Makefile

11 lines
109 B
Makefile

.PHONY: build build_win clean
build:
go build .
build_win:
GOOS=windows go build .
clean:
rm -rf build