Makefile 127 B

12345678910111213141516
  1. .PHONY: all
  2. all:
  3. exec ./build.sh
  4. docs:
  5. exec ./build-docs.sh
  6. test: check
  7. check:
  8. exec ./validate.sh
  9. # vim: ts=4 noet ai