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
272 B
Makefile
Raw Normal View History

PY=/usr/bin/env python
PYTHONPATH=lib
all: test sdist epydoc
sdist:
PYTHONPATH=$(PYTHONPATH) $(PY) setup.py sdist
test:
PYTHONPATH=$(PYTHONPATH) $(PY) t/test.py
epydoc:
PYTHONPATH=$(PYTHONPATH) epydoc --html -o epydoc tftpy
clean:
rm -rf dist src epydoc MANIFEST