From 63eba2e491a0c410b3841cbad2dd1a9f80416bca Mon Sep 17 00:00:00 2001
From: Feng Shu <tumashu@gmail.com>
Date: Tue, 2 Jul 2013 11:52:10 +0800
Subject: [PATCH] Let =`make'= be an option to =`org-latex-pdf-process'=.

* ox-latex.el (org-latex-pdf-process): let =`make'= be a
  preconfigured choice and change the wording of the docstring.

TINYCHANGE
---
 lisp/ox-latex.el |    7 +++++--
 1 个文件被修改，插入 5 行(+)，删除 2 行(-)

diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index 09928a4..1708108 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -788,8 +788,9 @@ then `texi2dvi' is the superior choice as it automates the LaTeX
 build process by calling the \"correct\" combinations of
 auxiliary programs.  Org does offer `texi2dvi' as one of the
 customize options.  Alternatively, `rubber' and `latexmk' also
-provide similar functionality.  The latter supports `biber' out
-of the box.
+provide similar functionality. The latter supports `biber' out
+of the box. If you prefer to use make command, you can create 
+Makefile and use `make' option. 
 
 Alternatively, this may be a Lisp function that does the
 processing, so you could use this to apply the machinery of
@@ -829,6 +830,8 @@ file name as its single argument."
 		 ("rubber -d --into %o %f"))
 	  (const :tag "latexmk"
 		 ("latexmk -g -pdf %f"))
+	  (const :tag "make"
+		 ("make"))
 	  (function)))
 
 (defcustom org-latex-logfiles-extensions
-- 
1.7.10.4

