forked from etotheipi/BitcoinArmory
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (21 loc) · 729 Bytes
/
Makefile
File metadata and controls
25 lines (21 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# All the actual Makefiles are deeper in the directory tree.
# I am just calling them, here.
all :
cd cppForSwig; make swig
clean :
cd cppForSwig; make clean
rm -rf osxbuild/Armory.app
rm -rf osxbuild/env
install :
mkdir -p $(DESTDIR)/usr/share/armory/img
mkdir -p $(DESTDIR)/usr/share/armory/extras
mkdir -p $(DESTDIR)/usr/share/armory/jsonrpc
cp *.py *.so README LICENSE $(DESTDIR)/usr/share/armory/
cp img/* $(DESTDIR)/usr/share/armory/img
cp extras/*.py $(DESTDIR)/usr/share/armory/extras
cp jsonrpc/* $(DESTDIR)/usr/share/armory/jsonrpc
mkdir -p $(DESTDIR)/usr/share/applications
cp dpkgfiles/armory*.desktop $(DESTDIR)/usr/share/applications/
osx :
chmod +x osxbuild/deploy.sh
cd osxbuild; ./deploy.sh