Makefile 718 B

1234567891011121314151617181920212223
  1. go: performance-graph.pdf
  2. xpdf performance-graph.pdf
  3. performance-graph.pdf: array.txt seek.txt gen-performance-graph
  4. ./gen-performance-graph > performance-graph.pdf
  5. array.txt seek.txt: test-bloom-filter
  6. ./this-pylint bloom_filter_mod.py test-bloom-filter
  7. rm -f seek.txt array.txt
  8. /usr/local/pypy-1.6/bin/pypy ./test-bloom-filter
  9. #/usr/local/cpython-3.2/bin/python ./test-bloom-filter
  10. #/usr/local/cpython-2.5/bin/python ./test-bloom-filter
  11. #/usr/local/cpython-2.7/bin/python ./test-bloom-filter
  12. #/usr/local/cpython-3.0/bin/python ./test-bloom-filter
  13. #/usr/local/jython-2.5.2-r7288/bin/jython ./test-bloom-filter
  14. clean:
  15. rm -f *.pyc *.class
  16. rm -rf __pycache__
  17. rm -f bloom-filter-rm-me
  18. rm -f *.ps *.pdf