This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
khepri-tftpy/Makefile

17 lines
241 B
Makefile

PY=/usr/bin/env python
PYTHONPATH=.
all: test sdist
sdist:
PYTHONPATH=$(PYTHONPATH) $(PY) setup.py sdist
test:
PYTHONPATH=$(PYTHONPATH) $(PY) t/test.py
clean:
rm -rf dist src tftpy-doc* MANIFEST
flakes:
pyflakes bin/*.py tftpy/*.py