-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbf14db
commit 64b44d7
Showing
3 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
all: build-windows build-linux | ||
all: build-windows build-linux build-macos-amd64 build-macos-arm64 | ||
|
||
build-windows: | ||
env GOOS=windows GOARCH=amd64 go build -o ./build/universal-checksum-patcher-windows.exe *.go | ||
|
||
build-linux: | ||
env GOOS=linux GOARCH=amd64 go build -o ./build/universal-checksum-patcher-linux *.go | ||
env GOOS=linux GOARCH=amd64 go build -o ./build/universal-checksum-patcher-linux *.go | ||
|
||
build-macos-amd64: | ||
env GOOS=darwin GOARCH=amd64 go build -o ./build/universal-checksum-patcher-macos-amd64 *.go | ||
|
||
build-macos-arm64: | ||
env GOOS=darwin GOARCH=arm64 go build -o ./build/universal-checksum-patcher-macos-arm64 *.go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters