-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.dos
executable file
·90 lines (70 loc) · 2.94 KB
/
config.dos
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# $State: Exp $ $Date: 2002/01/14 18:14:40 $ $Revision: 1.8 $
# 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=C:/PhoX
# prefix = /usr
# prefix = ${HOME}
# where to put the binary files
BINDIR = ${prefix}/bin
# where to put the PhoX library files
LIBDIR = ${prefix}/lib/phox
# where to put the doc :
DOCDIR = ${prefix}/doc/phox
# The name of the emacs comand you use (may be emacs, xemacs, ...)
# Note: xemacs displays special symbols in an elegant way
EMACS = xemacs
# Normally, the path for the emacs library is automatically computed.
# If is fails set this variable:
# EMACSDIR = ${prefix}/share/emacs/site-lisp
# The following directory must be in your TEXINPUTS path
TEXDIR = ${prefix}/tex
# TEXDIR = ${prefix}/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 PhoX (recommended) ?
EXE =.exe
PHOXVERS = phoxopt$(EXE) # use native-code compiler
#PHOXVERS = phoxslow$(EXE) # use byte-code compiler
# Do you want the native code compiled version of pretty (recommended)
# (the pretty formatter for TeX document) ?
PRETTYVERS = prettyopt$(EXE) # use native-code compiler
# PRETTYVERS = prettyslow$(EXE) # use byte-code compiler
# Where to find ocaml and others (version 3.04 or later) :
CAMLC = ocamlc -g
CAMLDEP = ocamldep
#CAMLO = ocamlopt # if you are in hurry and find the
CAMLO = ocamlopt.opt # native-code compiler too slow,
# # change this to ocamlopt.opt
# # (if you have compiled it !)
CAMLPREPRO = -pp camlp4o
# # Uncomment the previous line if you
# # use ocaml 3.04 or later
# where to find sed
SED = /bin/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 = gawk
# where to find PERL (used by phoxdep in a #!... comment)
PERL = 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 = /home/raffalli/FTP/PhoX/$(VERSNUM)
#DISTRIBDIR = /mnt/disk/PhoX
# name of the root directory in the tar archive file for distribution
# (you probably do not need to use this variable).
DISTRIBTARDIR = phox-$(VERSNUM)