You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
324 B
22 lines
324 B
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
|
|
|