2008-01-31 05:32:35 -05:00
|
|
|
# Makefile - for the org-mode distribution
|
|
|
|
#
|
2012-01-02 14:07:04 -05:00
|
|
|
# This file is not part of GNU Emacs
|
|
|
|
|
2012-04-21 11:25:35 -04:00
|
|
|
# set up environment
|
|
|
|
include default.mk # defaults, customizable via "local.mk"
|
|
|
|
-include local.mk # optional local customization, use default.mk as template
|
|
|
|
|
|
|
|
# default target is "all" unless overridden in local.mk
|
2012-01-02 15:54:55 -05:00
|
|
|
all::
|
2008-01-31 05:32:35 -05:00
|
|
|
|
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 )
|
2012-04-21 05:37:12 -04:00
|
|
|
$(info make help - show this help)
|
|
|
|
$(info make - cleanly compile Org ELisp files and documentation)
|
2011-07-17 08:49:43 -04:00
|
|
|
$(info )
|
2011-11-13 05:53:12 -05: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 08:49:43 -04:00
|
|
|
$(info )
|
2011-11-13 05:53:12 -05:00
|
|
|
$(info Maintenance)
|
|
|
|
$(info ===========)
|
2012-04-21 05:37:12 -04:00
|
|
|
$(info make doc - make all documentation)
|
2011-11-13 05:53:12 -05: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 08:49:43 -04:00
|
|
|
$(info )
|
2012-02-14 13:36:59 -05:00
|
|
|
$(info make check - build org and run complete test suite)
|
2011-11-13 05:53:12 -05: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 05:27:13 -04:00
|
|
|
@echo ""
|
2011-07-12 13:45:59 -04:00
|
|
|
|
2012-01-02 14:07:04 -05:00
|
|
|
include targets.mk # toplevel make machinery
|