good morning!!!!

Skip to content
Snippets Groups Projects
Commit a482b0cc authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

WIP Makefile

parent 00533003
No related branches found
No related tags found
No related merge requests found
Makefile 0 → 100644
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment