datashake/Makefile

14 lines
175 B
Makefile
Raw Normal View History

2023-12-03 02:08:29 +00:00
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