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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# Makefile.config: Version 6.
PREFIX = /usr/
# Full path for Bash
BASH = /bin/bash
# Architecture independent files directory
DATADIR = $(PREFIX)/share/whizzytex
# Architecture dependent files directory
LIBDIR = $(PREFIX)/lib/whizzytex
# Executable files directory (does not need to be in the PATH)
BINDIR = $(PREFIX)/lib/whizzytex
# Name of the Emacs or XEmacs command.
# Fill only if you wish to install byte-compiled lisp code.
EMACS =
XEMACS =
# Where to install emacs-lisp code (need not be in (X)Emacs load-path)
# Fill at most one line (either one).
# If EMACS or XEMACS are both defined then EMACSDIR and XEMACSDIR must differ
EMACSDIR = /usr/share/emacs/site-lisp/whizzytex
XEMACSDIR =
# Where to install the LaTeX macros (need not be in the TEXINPUTS path)
LATEXDIR = /usr/share/texmf/tex/whizzytex
# Where to install the documentation
DOCDIR = $(PREFIX)/share/doc/whizzytex
# LATEX implementation: all fields must be filed
#######################
INITEX = pdfetex -ini
LATEX = latex
FORMAT = latex
FMT = fmt
BIBTEX = bibtex
# VIEWERS: at least one previewer should be defined
#######################
ADVI = advi
MULTIPLE = true
XDVI = xdvi
GV = gv
DVIPS = dvips
# CONFIGFILE
CONFIGFILE = /etc/whizzytex/whizzytex.conf
# Other
#######################
GREPB=true
|