pdfparanoia/Makefile

18 lines
261 B
Makefile
Raw Normal View History

2013-02-05 10:10:14 +01:00
SHELL := /bin/bash
test:
nosetests-2.7 -s --verbosity=2
clean:
2013-02-07 00:39:38 +01:00
rm -fr build dist
2013-02-05 10:10:14 +01:00
rm -fr *.egg-info
2013-02-07 00:39:38 +01:00
find . -name *.pyc -exec rm {} \;
find . -name *.swp -exec rm {} \;
2013-02-05 10:10:14 +01:00
install:
2013-02-05 11:28:42 +01:00
python2.7 setup.py install
2013-02-05 10:10:14 +01:00
2013-02-06 00:24:47 +01:00
upload: clean
2013-02-05 11:28:42 +01:00
python2.7 setup.py sdist upload
2013-02-05 10:10:14 +01:00