aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 21cad6cd200dc95532df002e89e42b7869a1cb6c (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
all:
	./setup.py build

dist:
	./setup.py sdist bdist_wheel

install:
	pip install --ignore-installed .

install-user:
	pip install --ignore-installed --user .

uninstall:
	pip uninstall --yes fonttools

check: all
	pytest

clean:
	./setup.py clean --all

docs:
	cd Doc && $(MAKE) html

.PHONY: all dist install install-user uninstall check clean docs