mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-23 06:48:47 +00:00
Update Makefile
This commit is contained in:
parent
1d2462562e
commit
9c233ab23e
18
cli/Makefile
Normal file
18
cli/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
build:
|
||||
go build -o bin/main main.go
|
||||
|
||||
build-cr:
|
||||
echo "Compiling for every OS and Platform"
|
||||
GOOS=linux GOARCH=386 go build -o bin/mizu-linux-386 main.go
|
||||
GOOS=windows GOARCH=386 go build -o bin/mizu-windows-386.exe main.go
|
||||
|
||||
GOOS=darwin GOARCH=amd64 go build -o bin/mizu-darwin-amd64 main.go
|
||||
GOOS=linux GOARCH=amd64 go build -o bin/mizu-linux-amd64 main.go
|
||||
GOOS=windows GOARCH=amd64 go build -o bin/mizu-windows-amd64.exe main.go
|
||||
|
||||
GOOS=darwin GOARCH=arm64 go build -o bin/mizu-darwin-arm64 main.go
|
||||
GOOS=linux GOARCH=arm64 go build -o bin/mizu-linux-arm64 main.go
|
||||
GOOS=windows GOARCH=arm64 go build -o bin/mizu-windows-arm64 main.go
|
||||
|
||||
run:
|
||||
go run main.go ".*"
|
Loading…
Reference in New Issue
Block a user