-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig
66 lines (50 loc) · 1.96 KB
/
config
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
61
62
63
64
65
66
# $State: Exp $ $Date: 2003/02/12 21:01:42 $ $Revision: 1.10 $
# Edit this file to choose the right path
# on your local installation
# main directory (can be use or not for the next variables).
top=
PREFIX=/usr/local
# PREFIX = /usr
# PREFIX = ${HOME}
# where to put the binary files
BINDIR = ${PREFIX}/bin
# where to put the PhoX library files
LIBDIR = ${PREFIX}/lib/phox
# proof general folder
PGDIR = ${PREFIX}/share/emacs/site-lisp/ProofGeneral
PGPHOXDIR = ${PGDIR}/phox
# where to put the doc :
DOCDIR = ${PREFIX}/doc/phox
# The following directory must be in your TEXINPUTS path
TEXDIR = ${PREFIX}/share/lib/texmf/tex/latex/phox
# where to put documentation files needed by PhoX
# (no reasons to change these four variables)
TEXTDOCDIR=${DOCDIR}/text
TEXDOCDIR=${DOCDIR}/tex
HTMLDOCDIR=${DOCDIR}/html
EXAMPLESDIR = ${DOCDIR}/examples
TUTORIALDIR = ${DOCDIR}/tutorial
# Do you want the native code compiled version of pretty (recommended)
# (the pretty formatter for TeX document) ?
PRETTYVERS = prettyopt # use native-code compiler
# where to find sed
SED = `which sed`
# where to find AWK (used to build documentation and for creating tags
# tables). As documentation is built in distribution, you need awk only
# if you want to create tags table for phox files. If needed, gnu awk is
# required.
AWK = `which awk`
# where to find PERL (used by phoxdep in a #!... comment)
PERL = `which perl`
# The default path used by PhoX (if the PHOXPATH variable is undefined)
DEFAULT_PATH = $(LIBDIR)
# The character separating each directory in the path
# (normally ':' but ';' under windows)
DELIM=:
# Warning do not add spaces in the definition of DELIM and DEFAULT_PATH
# where to create distributions (you probably do not need to use this
# variable). This directory must not be in source directory.
DISTRIBDIR = ./archive/$(VERSNUM)
# name of the root directory in the tar archive file for distribution
# (you probably do not need to use this variable).
DISTRIBTARDIR = phox-$(VERSNUM)