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
msoulier b68ceca9d8 Updated build process.
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@66 63283fd4-ec1e-0410-9879-cb7f675518da
2007-03-31 01:51:42 +00:00

22 lines
395 B
Makefile

PY=/usr/bin/env python
PYTHONPATH=.
all: test sdist tftpy-doc.tar.gz
sdist:
PYTHONPATH=$(PYTHONPATH) $(PY) setup.py sdist
test:
PYTHONPATH=$(PYTHONPATH) $(PY) t/test.py
apidocs: tftpy-doc
tftpy-doc:
PYTHONPATH=$(PYTHONPATH) epydoc --html -o tftpy-doc tftpy
tftpy-doc.tar.gz: tftpy-doc
-mkdir dist
tar -zcvf dist/tftpy-doc.tar.gz tftpy-doc
clean:
rm -rf dist src tftpy-doc* MANIFEST