mirror of https://github.com/ethereum/go-ethereum
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.
22 lines
407 B
22 lines
407 B
11 years ago
|
UNAME = $(shell uname)
|
||
|
|
||
|
# Default is building
|
||
|
all:
|
||
|
go install
|
||
|
|
||
|
install:
|
||
|
# Linux build
|
||
|
ifeq ($(UNAME),Linux)
|
||
11 years ago
|
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
|
||
11 years ago
|
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
|