datashake/Makefile
2023-12-04 01:11:04 -08:00

14 lines
175 B
Makefile

define build
GOOS=$(1) GOARCH=$(2) \
go build \
-o release/$(1)-$(2)/datashake
endef
.PHONY: all
all:
$(call build,linux,amd64)
.PHONY: clean
clean:
$(RM) -r release