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

23 lines
405 B

11 years ago
UNAME = $(shell uname)
FILES=qml *.png
GOPATH=$(PWD)
11 years ago
# 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
11 years ago
install:
# Linux build
ifeq ($(UNAME),Linux)
cp -r assets/* /usr/share/ethereal
cp go-ethereum /usr/local/bin/ethereal
11 years ago
endif
# OS X build
ifeq ($(UNAME),Darwin)
# Execute py script
endif