Makefile 832 B

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