Roy Crihfield
96c7e20c97
All checks were successful
Test / Run unit tests (push) Successful in 12m26s
Reviewed-on: #2
15 lines
461 B
Makefile
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
|