2008-01-31 10:32:35 +00:00
|
|
|
# Makefile - for the org-mode distribution
|
|
|
|
#
|
2012-01-02 19:07:04 +00:00
|
|
|
# This file is not part of GNU Emacs
|
|
|
|
|
|
|
|
# default target is "all"
|
2012-01-02 20:54:55 +00:00
|
|
|
all::
|
2008-01-31 10:32:35 +00:00
|
|
|
|
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:
|
2011-07-17 12:49:43 +00:00
|
|
|
$(info )
|
2012-04-21 09:37:12 +00:00
|
|
|
$(info make help - show this help)
|
|
|
|
$(info make - cleanly compile Org ELisp files and documentation)
|
2011-07-17 12:49:43 +00:00
|
|
|
$(info )
|
2011-11-13 10:53:12 +00:00
|
|
|
$(info Installation)
|
|
|
|
$(info ============)
|
|
|
|
$(info make install - install Org, both ELisp and Info files)
|
|
|
|
$(info make install-lisp - install Org, only ELisp files)
|
|
|
|
$(info make install-info - install Org, only Info file)
|
2011-07-17 12:49:43 +00:00
|
|
|
$(info )
|
2011-11-13 10:53:12 +00:00
|
|
|
$(info Maintenance)
|
|
|
|
$(info ===========)
|
2012-04-21 09:37:12 +00:00
|
|
|
$(info make doc - make all documentation)
|
2011-11-13 10:53:12 +00:00
|
|
|
$(info make info - make Info documentation)
|
|
|
|
$(info make html - make HTML documentation)
|
|
|
|
$(info make pdf - make pdf documentation)
|
|
|
|
$(info make card - make refcards documentation)
|
2011-07-17 12:49:43 +00:00
|
|
|
$(info )
|
2012-02-14 18:36:59 +00:00
|
|
|
$(info make check - build org and run complete test suite)
|
2011-11-13 10:53:12 +00:00
|
|
|
$(info make clean - clean Org ELisp and documentation files)
|
|
|
|
$(info make compile - cleanly compile Org ELisp files)
|
|
|
|
$(info make compile-dirty - compile Org ELisp without cleaning)
|
|
|
|
$(info )
|
|
|
|
$(info make clean-install - remove installed Org ELisp and documentation files)
|
2011-07-05 09:27:13 +00:00
|
|
|
@echo ""
|
2011-07-12 17:45:59 +00:00
|
|
|
|
2012-01-02 19:07:04 +00:00
|
|
|
include default.mk # defaults, customizable via "local.mk"
|
|
|
|
-include local.mk # optional local customization, use default.mk as template
|
|
|
|
include targets.mk # toplevel make machinery
|