summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/www/Makefile b/www/Makefile
index 5075a07..53ba4ce 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -9,12 +9,14 @@ clean:
rm -rf public
rm -rf node_modules
-pydist: pydist-clean build
+py-pkg:
touch leap/bitmask_www/__init__.py
cp -r public/ leap/bitmask_www
+
+pydist: pydist-clean build py-pkg
python setup.py bdist_wheel
-pydist-dev:
+pydist-dev: pydist-clean build py-pkg
pip install -e .
pydist-clean: