Makefile 976 B

1234567891011121314151617181920212223242526272829
  1. # Makefile - for the org-mode distribution
  2. #
  3. # Maintainer: Carsten Dominik <dominik@science.uva.nl>
  4. # Version: VERSIONTAG
  5. #
  6. # To install org-mode, edit the Makefile, type `make', then `make install'.
  7. # To create the PDF and HTML documentation files, type `make doc'.
  8. # Describe valid make targets for org-mode.
  9. targets help:
  10. @echo "make - compile Org ELisp files"
  11. @echo "make clean - clean Elisp and documentation files"
  12. @echo "make all - compile Org ELisp files and documentation"
  13. @echo ""
  14. @echo "make doc - make all documentation"
  15. @echo "make info - make Info documentation"
  16. @echo "make html - make HTML documentation"
  17. @echo "make pdf - make pdf documentation"
  18. @echo "make card - make refcards documentation"
  19. @echo ""
  20. @echo "make install - install Org"
  21. @echo "make install-lisp - install Org ELisp files"
  22. @echo "make install-info - install Org Info file"
  23. include default.mk
  24. include maint.mk
  25. include targets.mk
  26. include maint-targets.mk
  27. include dependencies.mk