From 1f2547b8a7cfe100f64428d20f4bcf95eb9ecc5c Mon Sep 17 00:00:00 2001 From: obscuren Date: Sat, 22 Mar 2014 01:02:24 +0100 Subject: Major re-organisation. The Ethereum node and Gui are now separated. --- ethereal/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ethereal/Makefile (limited to 'ethereal/Makefile') diff --git a/ethereal/Makefile b/ethereal/Makefile new file mode 100644 index 000000000..02d127963 --- /dev/null +++ b/ethereal/Makefile @@ -0,0 +1,21 @@ +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 -- cgit