0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-20 20:48:34 +00:00
org-mode/Makefile
Achim Gratz a5cb04dcd8 hand off ./doc to sub-make
* Makefile: use info function for output and call shell only once
* default.mk: add PDFTEX and RMR variables for customization
* lisp/Makefile: add target 'all' and create $(lispdir) if necessary
* maint-targets.mk: invoke sub-make for HTML manuals
* maint.mk: remove unsused VARIABLES
* targets.mk: invoke sub-make for ./doc and clean up some targets
2012-04-20 21:04:07 +02:00

32 lines
976 B
Makefile

# Makefile - for the org-mode distribution
#
# Maintainer: Carsten Dominik <dominik@science.uva.nl>
# Version: VERSIONTAG
#
# Describe valid make targets for org-mode.
.PHONY: targets help
targets help:
$(info )
$(info make - show this help)
$(info )
$(info make clean - clean Elisp and documentation files)
$(info make all - compile Org ELisp files and documentation)
$(info )
$(info make docs - make all documentation)
$(info make info - make Info documentation)
$(info make html - make HTML documentation)
$(info make pdf - make pdf documentation)
$(info make card - make refcards documentation)
$(info )
$(info make install - install Org, both ELisp and Info files)
$(info make install-lisp - install Org ELisp files)
$(info make install-info - install Org Info file)
@echo ""
include default.mk
-include local.mk
include maint.mk
include targets.mk
include maint-targets.mk