WIP Makefile
This commit is contained in:
parent
00533003b7
commit
a482b0cc1b
20
Makefile
Normal file
20
Makefile
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
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
|
Loading…
Reference in New Issue
Block a user