Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mhib committed Feb 23, 2020
1 parent 259b671 commit 59fc874
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ combusken:
ln -s -f "$(ROOT_DIR)" "${GOPATH}/src/github.com/mhib/combusken"
go build -o $(EXE) combusken.go
rm "${GOPATH}/src/github.com/mhib/combusken"


build:
GOOS=linux GOARCH=amd64 go build -o combusken-linux-64 combusken.go
GOOS=windows GOARCH=amd64 go build -o combusken-windows-64.exe combusken.go
GOOS=darwin GOARCH=amd64 go build -o combusken-osx-64 combusken.go
GOOS=linux GOARCH=arm64 go build -o combusken-arm-64 combusken.go

0 comments on commit 59fc874

Please sign in to comment.