UNAME = $(shell uname)# Default is buildingall:
go installinstall:# Linux buildifeq($(UNAME),Linux)
mkdir /usr/local/ethereal
files=(wallet.qml net.png network.png new.png tx.png)
for file in "${files[@]}"; do
cp $file/usr/share/ethereal
done
cp $GOPATH/bin/go-ethereum /usr/local/bin/ethereal
endif# OS X buildifeq($(UNAME),Darwin)# Execute py scriptendif