mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-05-07 17:57:47 +00:00
* Provide cli version as git hash from makefile * Update Makefile, version.go, and 3 more files... * Update mizuRunner.go * Update README.md, resolver.go, and 2 more files... * Update provider.go * Feature/UI/light theme (#44) * light theme * css polish * unused code * css * text shadow * footer style * Update mizuRunner.go * Handle nullable vars (#47) * Decode gRPC body (#48) * Decode grpc. * Better variable names. * Added protobuf-decoder dependency. * Updated protobuf-decoder's version. Co-authored-by: RamiBerm <rami.berman@up9.com> Co-authored-by: RamiBerm <54766858+RamiBerm@users.noreply.github.com> Co-authored-by: lirazyehezkel <61656597+lirazyehezkel@users.noreply.github.com> Co-authored-by: nimrod-up9 <59927337+nimrod-up9@users.noreply.github.com>
32 lines
963 B
Makefile
32 lines
963 B
Makefile
FOLDER=$(GOOS).$(GOARCH)
|
|
COMMIT_HASH=$(shell git rev-parse HEAD)
|
|
|
|
.PHONY: help
|
|
.DEFAULT_GOAL := help
|
|
|
|
help: ## This help.
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|
|
|
|
install:
|
|
go install mizu.go
|
|
|
|
build: ## build mizu CLI binary (select platform via GOOS / GOARCH env variables)
|
|
go build -ldflags="-X 'github.com/up9inc/mizu/cli/mizu.GitCommitHash=$(COMMIT_HASH)'" -o bin/$(FOLDER)/mizu mizu.go
|
|
|
|
build-all: ## build for all supported platforms
|
|
@echo "Compiling for every OS and Platform"
|
|
@$(MAKE) build GOOS=darwin GOARCH=amd64
|
|
@$(MAKE) build GOOS=linux GOARCH=amd64
|
|
@# $(MAKE) GOOS=windows GOARCH=amd64
|
|
@# $(MAKE) GOOS=linux GOARCH=386
|
|
@# $(MAKE) GOOS=windows GOARCH=386
|
|
@# $(MAKE) GOOS=darwin GOARCH=arm64
|
|
@# $(MAKE) GOOS=linux GOARCH=arm64
|
|
@# $(MAKE) GOOS=windows GOARCH=arm64
|
|
@echo "---------"
|
|
@find ./bin -ls
|
|
|
|
clean: ## clean all build artifacts
|
|
go clean
|
|
rm -rf ./bin/*
|