Major re-organisation.

The Ethereum node and Gui are now separated.
This commit is contained in:
obscuren
2014-03-22 01:02:24 +01:00
parent 22b4e9b617
commit 1f2547b8a7
23 changed files with 357 additions and 323 deletions

View File

@ -1,21 +0,0 @@
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)
for file in "${files[@]}"; do
cp $file /usr/share/ethereal
done
cp -r qml /usr/share/ethereal/qml
cp $GOPATH/bin/go-ethereum /usr/local/bin/ethereal
endif
# OS X build
ifeq ($(UNAME),Darwin)
# Execute py script
endif