diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 4da4c551c..000000000 --- a/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -UNAME = $(shell uname) - -# Default is building -all: - go install - -install: -# Linux build -ifeq ($(UNAME),Linux) - mkdir /usr/local/ethereal - files=(wallet.qml net.png network.png new.png tx.png) - for file in "${files[@]}"; do - cp $file /usr/share/ethereal - done - cp $GOPATH/bin/go-ethereum /usr/local/bin/ethereal -endif -# OS X build -ifeq ($(UNAME),Darwin) - # Execute py script -endif |