aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: bd91d7f959b3e6032e1148c90badb376076d86fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
	./run-tests.sh

clean:
	./setup.py clean --all

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