2008-01-31 05:32:35 -05:00
|
|
|
# Makefile - for the org-mode distribution
|
|
|
|
#
|
|
|
|
# Maintainer: Carsten Dominik <dominik@science.uva.nl>
|
|
|
|
# Version: VERSIONTAG
|
|
|
|
#
|
|
|
|
|
2011-07-05 05:27:13 -04:00
|
|
|
# Describe valid make targets for org-mode.
|
2011-07-12 16:31:41 -04:00
|
|
|
.PHONY: targets help
|
2011-07-05 05:27:13 -04:00
|
|
|
targets help:
|
2011-07-17 08:49:43 -04:00
|
|
|
$(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)
|
2011-07-05 05:27:13 -04:00
|
|
|
@echo ""
|
2011-07-12 13:45:59 -04:00
|
|
|
|
2011-07-16 16:49:24 -04:00
|
|
|
include default.mk
|
|
|
|
-include local.mk
|
|
|
|
include maint.mk
|
|
|
|
include targets.mk
|
|
|
|
include maint-targets.mk
|