eth-statediff-compliance/Makefile
Roy Crihfield 96c7e20c97
All checks were successful
Test / Run unit tests (push) Successful in 12m26s
Add plugin using parallel iterators (#2)
Reviewed-on: #2
2023-09-22 10:49:02 +00:00

15 lines
461 B
Makefile

# 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