12345678910111213141516171819202122232425262728293031323334353637383940
  1. # saturnin - Smart and ready desktop helper
  2. # See LICENSE file for copyright and license details.
  3. include config.mk
  4. all: options built.list
  5. built.list:
  6. @setup/mk.sh build
  7. options:
  8. @echo saturnin build options:
  9. @echo "VERSION = ${VERSION}"
  10. @echo "PREFIX = ${PREFIX}"
  11. build:
  12. @setup/mk.sh build
  13. install_manpages: manpages
  14. @setup/mk.sh install_manpages
  15. manpages:
  16. @setup/mk.sh manpages
  17. test: install
  18. @setup/mk.sh test
  19. clean:
  20. @setup/mk.sh clean
  21. dist: clean
  22. @setup/mk.sh dist
  23. install: all
  24. @setup/mk.sh install
  25. uninstall:
  26. @setup/mk.sh uninstall
  27. .PHONY: all options clean dist install test uninstall