summaryrefslogtreecommitdiff
path: root/ui/Makefile
blob: 96b632c53130258e91f748433add4eaecc466a7f (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# builds for development mode
#

dev-build: build-clean
	npm install
	npm run build
	touch pydist/leap/bitmask_js/__init__.py

dev-install: dev-build
	pip install -e pydist

#
# installs python package, but does not rebuild the js.
# for usage when you don't want to install nodejs
#
dev-install-prebuilt:
	pip install -e pydist


#
# distribution builds
#

dist-build: build-clean
	npm install
	npm run build:production
	touch pydist/leap/bitmask_js/__init__.py
	cd pydist && python setup.py bdist_wheel

dist-install: dist-build
	pip install pydist/dist/*.whl

#
# cleaning up
#

build-clean:
	rm -rf pydist/leap/bitmask_js
	rm -rf pydist/dist
	rm -rf pydist/build

clean: build-clean
	rm -rf node_modules

uninstall:
	pip uninstall leap.bitmask_js