cosmos-sdk/tools/hubl/Makefile
Julien Robert 98888e4ee7
chore: add tooling and docs for hubl (#14743)
Co-authored-by: Aaron Craelius <aaron@regen.network>
2023-01-23 22:12:22 +01:00

12 lines
142 B
Makefile

#!/usr/bin/make -f
all: hubl test
hubl:
go build -mod=readonly ./cmd/hubl
test:
go test -mod=readonly -race ./...
.PHONY: all hubl test