Initial commit.

This commit is contained in:
2023-12-02 18:08:29 -08:00
commit 1d0c4acc6c
6 changed files with 318 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
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