forked from etotheipi/BitcoinArmory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
27 lines (23 loc) · 809 Bytes
/
Makefile
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
26
27
# 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/lib/armory/extras
mkdir -p $(DESTDIR)/usr/lib/armory/jsonrpc
mkdir -p $(DESTDIR)/usr/lib/armory/dialogs
cp *.py *.so README $(DESTDIR)/usr/lib/armory/
cp img/* $(DESTDIR)/usr/share/armory/img
cp extras/*.py $(DESTDIR)/usr/lib/armory/extras
cp jsonrpc/*.py $(DESTDIR)/usr/lib/armory/jsonrpc
cp dialogs/*.py $(DESTDIR)/usr/lib/armory/dialogs
mkdir -p $(DESTDIR)/usr/share/applications
cp dpkgfiles/armory*.desktop $(DESTDIR)/usr/share/applications/
osx :
chmod +x osxbuild/deploy.sh
cd osxbuild; ./deploy.sh