eth-statediff-compliance/Makefile
Thomas E Lackey 62e44d36dd
All checks were successful
Test / Run unit tests (pull_request) Successful in 12m48s
Add clean
2023-09-26 20:03:49 -05:00

18 lines
533 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 ../$@ .
clean:
rm -f dumpdiff.geth dumpdiff.plugeth dumpdiff.plugeth-parallel
all: dumpdiff.geth dumpdiff.plugeth dumpdiff.plugeth-parallel
.PHONY: all