-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile.vars.template
More file actions
27 lines (22 loc) · 923 Bytes
/
Makefile.vars.template
File metadata and controls
27 lines (22 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# settings of some variables to be used in Makefile
#
# Please copy to Makefile.vars and adapt
#
# Part of ceur-make (https://github.com/ceurws/ceur-make/)
#
# © Christoph Lange and contributors 2012–2015
#
# Licensed under GPLv3 or any later version
# path to your GNU bash installation
SHELL = /bin/bash
# path to your Saxon-HE 9 jar for XSLT processing
SAXON = java -jar /home/clange/tools/saxon/saxon9he.jar
# If you use a version control system, you may want any directories created by ceur-make to be added to version control; this is an example for Subversion.
MKDIR = svn mkdir
# Your way of generating PDF from LaTeX sources; this should be a script or tool that takes all LaTeX-specific dependencies into account and automatically runs LaTeX as many times as necessary.
TEX2PDF = rubber -d
# for editing with Emacs (feel free to add code for vi etc.)
#
# Local Variables:
# mode: makefile-gmake
# End: