summaryrefslogtreecommitdiff
path: root/pkg/pyinst/Makefile
blob: 41599a47c3cac6b1291ee24b081968de72e24669 (plain)
1
2
3
4
5
6
7
8
9
10
build: clean
	pyinstaller -y app.spec
	cp $(VIRTUAL_ENV)/lib/python2.7/site-packages/_scrypt.so dist/bitmask/
	cp ../../src/leap/bitmask/core/bitmaskd.tac dist/bitmask
	mkdir dist/bitmask/leap
	cp -r $(VIRTUAL_ENV)/lib/python2.7/site-packages/leap/bitmask_js/  dist/bitmask/leap

clean:
	rm -rf dist build