aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8e71ffb..ba7f802 100644
--- a/Makefile
+++ b/Makefile
@@ -22,5 +22,16 @@ install:
cp ${target}.1 ${DPREFIX}/share/man/man1
cp ${target}.5 ${DPREFIX}/share/man/man5
+dist:
+ mkdir -p dist
+ for os in darwin linux windows; do \
+ for arch in amd64 arm64; do \
+ GOARCH=$$arch GOOS=$$os go build -o dist/gsp-$$os-$$arch; \
+ done; \
+ done
+
test:
go test ./...
+
+clean:
+ rm -rf dist