Makefile 191 B

12345678910111213
  1. build: source/*.ufo
  2. ./build.sh
  3. build-with-dependencies: source/*.ufo
  4. ./build.sh --install-dependencies
  5. lint: shellcheck ufolint
  6. shellcheck: build.sh
  7. $@ $^
  8. ufolint: source/*.ufo
  9. $@ $^