Skip to content

Commit

Permalink
added the init target and updated the clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
pdfcrowd committed Mar 1, 2013
1 parent 45f1a61 commit 3b42357
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ publish:
rm -rf dist/* build/* python/MANIFEST
python setup.py clean && python setup.py sdist upload

init:
test -d ../test_files/out || mkdir -p ../test_files/out
test -e test_files || ln -s ../test_files/ test_files

.PHONY: clean
clean:
rm -rf dist/* build/* python/MANIFEST ./out/py_client*.pdf
rm -rf dist/* build/* python/MANIFEST ./test_files/out/py_client*.pdf

0 comments on commit 3b42357

Please sign in to comment.