Makefile 487 B

1234567891011121314151617181920212223242526272829
  1. NODE = node
  2. NPM = npm
  3. NODEUNIT = node_modules/nodeunit/bin/nodeunit
  4. DOX = node_modules/dox/bin/dox
  5. name = all
  6. total: build_native
  7. test_functional:
  8. node test/runner.js -t functional
  9. test_ssl:
  10. node test/runner.js -t ssl
  11. test_replicaset:
  12. node test/runner.js -t replicaset
  13. test_sharded:
  14. node test/runner.js -t sharded
  15. test_auth:
  16. node test/runner.js -t auth
  17. generate_docs:
  18. $(NODE) dev/tools/build-docs.js
  19. make --directory=./docs/sphinx-docs --file=Makefile html
  20. .PHONY: total