fonttools/Makefile
Behdad Esfahbod 67bbabcdea Remove run-tests.sh
I'm the only one who was using it. Remove now that pytest is what we
call.
2021-03-24 08:05:05 -07:00

26 lines
352 B
Makefile

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