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
405 B
22 lines
405 B
UNAME = $(shell uname)
|
|
FILES=qml *.png
|
|
GOPATH=$(PWD)
|
|
|
|
|
|
# Default is building
|
|
all:
|
|
go get -d
|
|
cp *.go $(GOPATH)/src/github.com/ethereum/go-ethereum
|
|
cp -r ui $(GOPATH)/src/github.com/ethereum/go-ethereum
|
|
go build
|
|
|
|
install:
|
|
# Linux build
|
|
ifeq ($(UNAME),Linux)
|
|
cp -r assets/* /usr/share/ethereal
|
|
cp go-ethereum /usr/local/bin/ethereal
|
|
endif
|
|
# OS X build
|
|
ifeq ($(UNAME),Darwin)
|
|
# Execute py script
|
|
endif
|
|
|