blob: 32620f25626da33a83807f0db49e106b707e4244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# See LICENSE file for copyright and license details.
all: rescribe-osx rescribe-osx-m1 rescribe.exe rescribe
rescribe:
GOOS=linux GOARCH=amd64 go build -o $@ .
rescribe-osx:
GOOS=darwin GOARCH=amd64 go build -o $@ .
rescribe-osx-m1:
GOOS=darwin GOARCH=arm64 go build -o $@ .
rescribe.exe:
GOOS=windows GOARCH=386 go build -o $@ .
|