18 lines
461 B
Makefile
18 lines
461 B
Makefile
#!/usr/bin/make -f
|
|
|
|
include scripts/build/linting.mk
|
|
include scripts/build/protobuf.mk
|
|
include scripts/build/localnet.mk
|
|
include scripts/build/simulations.mk
|
|
include scripts/build/testing.mk
|
|
include scripts/build/documentation.mk
|
|
include scripts/build/build.mk
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
#? go.sum: Run go mod tidy and ensure dependencies have not been modified
|
|
go.sum: go.mod
|
|
echo "Ensure dependencies have not been modified ..." >&2
|
|
go mod verify
|
|
go mod tidy
|