Makefile 976 B

12345678910111213141516171819202122232425262728293031
  1. # Makefile - for the org-mode distribution
  2. #
  3. # Maintainer: Carsten Dominik <dominik@science.uva.nl>
  4. # Version: VERSIONTAG
  5. #
  6. # Describe valid make targets for org-mode.
  7. .PHONY: targets help
  8. targets help:
  9. $(info )
  10. $(info make - show this help)
  11. $(info )
  12. $(info make clean - clean Elisp and documentation files)
  13. $(info make all - compile Org ELisp files and documentation)
  14. $(info )
  15. $(info make docs - make all documentation)
  16. $(info make info - make Info documentation)
  17. $(info make html - make HTML documentation)
  18. $(info make pdf - make pdf documentation)
  19. $(info make card - make refcards documentation)
  20. $(info )
  21. $(info make install - install Org, both ELisp and Info files)
  22. $(info make install-lisp - install Org ELisp files)
  23. $(info make install-info - install Org Info file)
  24. @echo ""
  25. include default.mk
  26. -include local.mk
  27. include maint.mk
  28. include targets.mk
  29. include maint-targets.mk