2008-01-31 10:32:35 +00:00
|
|
|
# Makefile - for the org-mode distribution
|
|
|
|
#
|
|
|
|
# Maintainer: Carsten Dominik <dominik@science.uva.nl>
|
|
|
|
# Version: VERSIONTAG
|
|
|
|
#
|
|
|
|
|
2011-07-05 09:27:13 +00:00
|
|
|
# Describe valid make targets for org-mode.
|
2011-07-12 20:31:41 +00:00
|
|
|
.PHONY: targets help
|
2011-07-05 09:27:13 +00:00
|
|
|
targets help:
|
|
|
|
@echo "make - compile Org ELisp files"
|
|
|
|
@echo "make clean - clean Elisp and documentation files"
|
|
|
|
@echo "make all - compile Org ELisp files and documentation"
|
|
|
|
@echo ""
|
|
|
|
@echo "make doc - make all documentation"
|
|
|
|
@echo "make info - make Info documentation"
|
|
|
|
@echo "make html - make HTML documentation"
|
|
|
|
@echo "make pdf - make pdf documentation"
|
|
|
|
@echo "make card - make refcards documentation"
|
|
|
|
@echo ""
|
|
|
|
@echo "make install - install Org"
|
|
|
|
@echo "make install-lisp - install Org ELisp files"
|
|
|
|
@echo "make install-info - install Org Info file"
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2011-07-16 20:49:24 +00:00
|
|
|
include default.mk
|
|
|
|
-include local.mk
|
|
|
|
include maint.mk
|
|
|
|
include targets.mk
|
|
|
|
include maint-targets.mk
|