File: Makefile

package info (click to toggle)
fonttools 4.57.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 27,040 kB
  • sloc: python: 140,483; xml: 103; makefile: 41
file content (25 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (3)
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