Roy Crihfield
c4f16290c7
* remove StreamCodeAndCodeHash * Makefile: local build target * clean up comments & unused
23 lines
532 B
Makefile
23 lines
532 B
Makefile
MOCKGEN ?= mockgen
|
|
MOCKS_DIR := $(CURDIR)/test_helpers/mocks
|
|
|
|
mocks: $(MOCKS_DIR)/gen_backend.go
|
|
.PHONY: mocks
|
|
|
|
$(MOCKS_DIR)/gen_backend.go:
|
|
$(MOCKGEN) --package mocks --destination $@ \
|
|
github.com/openrelayxyz/plugeth-utils/core Backend,Downloader
|
|
|
|
docker-image: mocks
|
|
docker build . -t "cerc/plugeth-statediff:local"
|
|
.PHONY: docker-image
|
|
|
|
# Local build
|
|
BUILD_FLAGS := --trimpath
|
|
|
|
plugin: build/statediff.so
|
|
.PHONY: plugin
|
|
|
|
build/statediff.so: ./**/*.go
|
|
go build --tags linkgeth --buildmode=plugin -o $@ $(BUILD_FLAGS) ./main
|