eth-statediff-compliance/Makefile
Roy Crihfield 59444de62d
All checks were successful
Test / Run unit tests (pull_request) Successful in 12m45s
tweaks
2023-09-27 15:31:19 +08:00

20 lines
498 B
Makefile

# Note: Top-level package code is shared, but commands are in separate modules to prevent
# go-ethereum import conflicts
ALL := dumpdiff.geth dumpdiff.plugeth dumpdiff.plugeth-parallel
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 ../$@ .
clean:
rm -f $(ALL)
all: $(ALL)
.PHONY: all