Poor man's XPath library https://pagure.io/shellfu-bash-pxpath

tfkit.mk 424B

123456789101112131415161718
  1. # tfkit - Shellfu's movable test framework
  2. # See LICENSE file for copyright and license details.
  3. #
  4. # To use, set TF_DIR (make macro) in your Makefile and
  5. # include this file.
  6. #
  7. # Adds `test` target.
  8. #
  9. # Note that running "runtests" directly should have the same
  10. # effect but you will need to set TF_DIR and/or TF_SUITE properly
  11. # unless they are default (see README)
  12. export TF_DIR
  13. test:
  14. @$(TF_DIR)/runtests
  15. .PHONY: test