Makefile 854 B

12345678910111213141516171819202122232425262728
  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. @echo "make - compile Org ELisp files"
  10. @echo "make clean - clean Elisp and documentation files"
  11. @echo "make all - compile Org ELisp files and documentation"
  12. @echo ""
  13. @echo "make doc - make all documentation"
  14. @echo "make info - make Info documentation"
  15. @echo "make html - make HTML documentation"
  16. @echo "make pdf - make pdf documentation"
  17. @echo "make card - make refcards documentation"
  18. @echo ""
  19. @echo "make install - install Org"
  20. @echo "make install-lisp - install Org ELisp files"
  21. @echo "make install-info - install Org Info file"
  22. include default.mk
  23. include maint.mk
  24. include targets.mk
  25. include maint-targets.mk
  26. include dependencies.mk