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

22 lines
335 B
Makefile
Raw Normal View History

PY=/usr/bin/env python
PYTHONPATH=.
2009-10-24 04:13:23 +00:00
all: test sdist
sdist:
PYTHONPATH=$(PYTHONPATH) $(PY) setup.py sdist
test:
PYTHONPATH=$(PYTHONPATH) $(PY) t/test.py
2009-10-24 04:13:23 +00:00
doc: apidocs
apidocs: tftpy-doc
tftpy-doc:
2009-10-24 04:13:23 +00:00
rm -rf html/tftpy-doc
PYTHONPATH=$(PYTHONPATH) epydoc --html -o html/tftpy-doc tftpy
clean:
rm -rf dist src tftpy-doc* MANIFEST