##// END OF EJS Templates
Minor cleanups.
Minor cleanups.

File last commit:

r1376:52b165ea
r1377:6383bdbd
Show More
Makefile
24 lines | 669 B | text/x-makefile | MakefileLexer
# Set this prefix to where you want to install the plugin
PREFIX=~/usr/local
PREFIX=~/tmp/local
plugin: IPython_doctest_plugin.egg-info
test: plugin dtexample.py
nosetests -s --with-ipdoctest --doctest-tests --doctest-extension=txt \
dtexample.py test*.txt
deb: plugin dtexample.py
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
test_combo.txt
iptest: plugin
nosetests -vs --with-ipdoctest --doctest-tests --doctest-extension=txt \
IPython
IPython_doctest_plugin.egg-info: ipdoctest.py setup.py
python setup.py install --prefix=$(PREFIX)
touch $@
clean:
rm -rf IPython_doctest_plugin.egg-info *~ *pyc build/ dist/