Files
ark/noah/Makefile
Louis Singer a17aba8356 Noah CLI implementation (#42)
* Import stubs

* send and balance cmd implementations

* ListVtxos & faucet

* main.go: add faucetCommand

* fix after review

* send: continue if no forfeits included in current round

* remove cov in noah/Makefile

* fancy printJSON

* remove rpc_url

---------

Co-authored-by: altafan <18440657+altafan@users.noreply.github.com>
2023-12-06 12:57:35 +01:00

27 lines
461 B
Makefile

.PHONY: build clean help lint vet
build:
@echo "Building noah binary..."
@bash ./scripts/build
## clean: cleans the binary
clean:
@echo "Cleaning..."
@go clean
## help: prints this help message
help:
@echo "Usage: \n"
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
## lint: lint codebase
lint:
@echo "Linting code..."
@golangci-lint run --fix
## vet: code analysis
vet:
@echo "Running code analysis..."
@go vet ./...