Makefile 612B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # eecc - Eclectic Engineer's Control Center
  2. # See LICENSE file for copyright and license details.
  3. include config.mk
  4. all: options built.list
  5. built.list:
  6. @setup/mk.sh eecc
  7. options:
  8. @echo eecc build options:
  9. @echo "VERSION = ${VERSION}"
  10. @echo "PREFIX = ${PREFIX}"
  11. install_manpages: manpages
  12. @setup/mk.sh install_manpages
  13. manpages:
  14. @setup/mk.sh manpages
  15. eecc:
  16. @setup/mk.sh eecc
  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