Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/ethereal/Makefile

22 lines
407 B

11 years ago
UNAME = $(shell uname)
# Default is building
all:
go install
install:
# Linux build
ifeq ($(UNAME),Linux)
mkdir -p /usr/local/ethereal
files=(net.png network.png new.png tx.png)
11 years ago
for file in "${files[@]}"; do
cp $file /usr/share/ethereal
done
cp -r qml /usr/share/ethereal/qml
11 years ago
cp $GOPATH/bin/go-ethereum /usr/local/bin/ethereal
endif
# OS X build
ifeq ($(UNAME),Darwin)
# Execute py script
endif