aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/Makefile
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-03-22 08:02:24 +0800
committerobscuren <geffobscura@gmail.com>2014-03-22 08:02:24 +0800
commit1f2547b8a7cfe100f64428d20f4bcf95eb9ecc5c (patch)
treed8be2c7b97a86f2b9949c4b4dc14ab2c2a34dc2e /ethereal/Makefile
parent22b4e9b6173437b28045d69e8fd0b468e526e559 (diff)
downloaddexon-1f2547b8a7cfe100f64428d20f4bcf95eb9ecc5c.tar.gz
dexon-1f2547b8a7cfe100f64428d20f4bcf95eb9ecc5c.tar.zst
dexon-1f2547b8a7cfe100f64428d20f4bcf95eb9ecc5c.zip
Major re-organisation.
The Ethereum node and Gui are now separated.
Diffstat (limited to 'ethereal/Makefile')
-rw-r--r--ethereal/Makefile21
1 files changed, 21 insertions, 0 deletions
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