Makefile 508 B

123456789101112131415161718192021
  1. PREFIX=/usr
  2. all:
  3. @echo "Run 'make test' to run unit tests"
  4. @echo "Run 'make install' to install python-espeak for user $(USER)"
  5. @echo "Run 'make global-install' as root to install python-espeak for all users"
  6. @echo "Run 'make uninstall' to uninstall the package"
  7. install:
  8. python setup.py install --user
  9. global-install:
  10. python setup.py install
  11. uninstall:
  12. pip uninstall neocities
  13. # Remember to set NEOCITIES_USER and NEOCITIES_PASS before running tests
  14. test:
  15. python -m unittest discover -s tests/