shell dot on steroids https://pagure.io/shellfu

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # ffoo - Fast Foo - a Bash Library
  2. # See LICENSE file for copyright and license details.
  3. include config.mk
  4. all: options doc ffoo
  5. options:
  6. @echo ffoo build options:
  7. @echo "VERSION = ${VERSION}"
  8. @echo "PREFIX = ${PREFIX}"
  9. doc:
  10. @setup/mk.sh doc
  11. install_manpages: manpages
  12. @setup/mk.sh install_manpages
  13. manpages:
  14. @setup/mk.sh manpages
  15. ffoo:
  16. @setup/mk.sh ffoo
  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