Makefile 674 B

12345678910111213141516171819202122232425262728293031323334353637
  1. all: build
  2. archives:
  3. postbuild_processing/archive_prep/archiver.sh
  4. build: ttf webfonts
  5. build-with-dependencies: source/*.ufo
  6. ./build-ttf.sh --install-dependencies
  7. ./build-woff.sh --install-dependencies
  8. ./build-woff2.sh --install-dependencies
  9. ./build-subsets.sh
  10. lint: shellcheck ufolint
  11. shellcheck: build-ttf.sh build-woff.sh build-woff2.sh build-subsets.sh tools/scripts/install/ttfautohint-build.sh postbuild_processing/archive_prep/archiver.sh
  12. $@ $^
  13. subsets: source/*.ufo
  14. ./build-subsets.sh
  15. ttf:
  16. ./build-ttf.sh
  17. ufolint: source/*.ufo
  18. $@ $^
  19. webfonts:
  20. ./build-woff.sh
  21. ./build-woff2.sh
  22. ./build-subsets.sh
  23. woff:
  24. ./build-woff.sh
  25. woff2:
  26. ./build-woff2.sh