UNPKG

@hyperlane-xyz/core

Version:

Core solidity contracts for Hyperlane

29 lines (21 loc) 509 B
GITCOMMIT := $(shell git rev-parse HEAD) GITDATE := $(shell git show -s --format='%ct') VERSION := v0.0.0 LDFLAGSSTRING +=-X main.GitCommit=$(GITCOMMIT) LDFLAGSSTRING +=-X main.GitDate=$(GITDATE) LDFLAGSSTRING +=-X main.Version=$(VERSION) LDFLAGS := -ldflags "$(LDFLAGSSTRING)" all: build build: env GO111MODULE=on go build -v $(LDFLAGS) -o ./bin/endpoint-monitor ./cmd clean: rm ./bin/endpoint-monitor test: go test -v ./... lint: golangci-lint run ./... .PHONY: \ build \ clean \ test \ lint