-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added simple build script to quickly build macos, linux, freebsd vers…
…ions of the tool
- Loading branch information
Showing
2 changed files
with
8 additions
and
0 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 |
---|---|---|
|
@@ -7,3 +7,4 @@ makedep.mk | |
as2make | ||
*.darwin | ||
*.linux | ||
*.freebsd |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
echo "Building Macos version... " | ||
GOOS=darwin GOARCH=amd64 go build -o as2make.darwin . | ||
echo "Building Linux version... " | ||
GOOS=linux GOARCH=amd64 go build -o as2make.linux . | ||
echo "Building FreeBSD version... " | ||
GOOS=freebsd GOARCH=amd64 go build -o as2make.freebsd . |