aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-03-21 18:16:41 +0800
committerobscuren <geffobscura@gmail.com>2014-03-21 18:16:41 +0800
commit0db86e4485176aff7c45f0ce673174ec8407c0fc (patch)
tree747db9bfe82beb0d7d455b964d666da9162daac0 /Makefile
parent85e04476845a5a41836824b133d939faf4e1c3fa (diff)
downloadgo-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.tar
go-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.tar.gz
go-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.tar.bz2
go-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.tar.lz
go-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.tar.xz
go-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.tar.zst
go-tangerine-0db86e4485176aff7c45f0ce673174ec8407c0fc.zip
Updated to work with the new chain
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4da4c551c..02d127963 100644
--- a/Makefile
+++ b/Makefile
@@ -7,11 +7,12 @@ all:
install:
# Linux build
ifeq ($(UNAME),Linux)
- mkdir /usr/local/ethereal
- files=(wallet.qml net.png network.png new.png tx.png)
+ 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