cosmos-sdk/tools/confix/Makefile
2023-01-10 10:28:41 +00:00

15 lines
214 B
Makefile

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