Updated makefile
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@24 63283fd4-ec1e-0410-9879-cb7f675518da
This commit is contained in:
parent
08af50ac0e
commit
837344caf2
1 changed files with 5 additions and 4 deletions
9
Makefile
9
Makefile
|
@ -1,12 +1,13 @@
|
|||
PY=/usr/bin/python
|
||||
PY=/usr/bin/env python
|
||||
PYTHONPATH=lib
|
||||
|
||||
all: test sdist
|
||||
|
||||
sdist:
|
||||
$(PY) setup.py sdist
|
||||
PYTHONPATH=$(PYTHONPATH) $(PY) setup.py sdist
|
||||
|
||||
test:
|
||||
$(PY) t/test.py
|
||||
PYTHONPATH=$(PYTHONPATH) $(PY) t/test.py
|
||||
|
||||
clean:
|
||||
rm -rf dist
|
||||
rm -rf dist src
|
||||
|
|
Reference in a new issue