summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorNick White <git@njw.name>2021-08-18 22:37:40 +0100
committerNick White <git@njw.name>2021-08-18 22:37:40 +0100
commitbde651bbde9df3a8c33b705dbe33bbcaf4e3e73d (patch)
tree758e90523a801d2a715d3bfcffe55c33872eef7e /makefile
parent767b60db23311adaf1035e821bc189877d63b7f0 (diff)
rescribe: Update documentation on how to deal with M1 signing, and move makefile to where it makes sense
Diffstat (limited to 'makefile')
-rw-r--r--makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index d831938..0000000
--- a/makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-# See LICENSE file for copyright and license details.
-
-default:
- @echo "To build and install use the basic go tools like so: go install ./..."
- @echo "This makefile is just for cross compiling (for which the"
- @echo "targets rescribe-osx and rescribe-w32 exist)"
-
-rescribe-osx:
- GOOS=darwin GOARCH=amd64 go build -o $@ ./cmd/rescribe
-
-rescribe-osx-m1:
- GOOS=darwin GOARCH=arm64 go build -o $@ ./cmd/rescribe
-
-rescribe.exe:
- GOOS=windows GOARCH=386 go build -o $@ ./cmd/rescribe