summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2a7fda172c1723018cd564db38c02ad4fa7c58de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DIST=dist/bitmask
NEXT_VERSION = $(shell cat pkg/next-version)
DIST_VERSION = dist/bitmask-$(NEXT_VERSION)/
include pkg/pyinst/build.mk

clean:
	find . -type f -name "*.py[co]" -delete
	find . -type d -name "__pycache__" -delete

dev-mail:
	pip install -e '.[mail]'

dev-backend:
	pip install -e '.[backend]'

dev-all:
	pip install -e '.[all]'

uninstall:
	pip uninstall leap.bitmask

doc:
	cd docs && make html