eth-statediff-compliance/Makefile

15 lines
461 B
Makefile
Raw Normal View History

# Note: Top-level package code is shared, but commands are in separate modules to prevent
# go-ethereum import conflicts
dumpdiff.geth: dumpdiff-geth/*
cd dumpdiff-geth && go build -tags geth -o ../$@ .
dumpdiff.plugeth:
cd dumpdiff-plugeth && go build -tags plugeth -o ../$@ .
dumpdiff.plugeth-parallel:
cd dumpdiff-plugeth-parallel && go build -tags plugeth_parallel -o ../$@ .
all: dumpdiff.geth dumpdiff.plugeth dumpdiff.plugeth-parallel
.PHONY: all