eth-statediff-compliance/Makefile
Roy Crihfield 8d80d36aa2
All checks were successful
Test / Run unit tests (pull_request) Successful in 12m16s
Add plugin-parallel
2023-09-21 23:23:55 +08: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