1
0
mirror of https://github.com/kanzure/pdfparanoia.git synced 2025-02-11 13:13:10 +01:00
pdfparanoia/Makefile

18 lines
257 B
Makefile
Raw Normal View History

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