protgen/Makefile
simon 59584f3928
All checks were successful
Build / Build (push) Successful in 1m20s
Dont remove build dir anymore
2025-05-19 21:51:32 +02:00

11 lines
122 B
Makefile

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