-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig
More file actions
71 lines (56 loc) · 2.26 KB
/
config
File metadata and controls
71 lines (56 loc) · 2.26 KB
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
# $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) ?
ROOT_DIR := $(shell git rev-parse --show-toplevel)/
#ROOT_DIR = $(dir $(lastword $(MAKEFILE_LIST)))
PRETTY = dune exec -- phox_pretty
PHOX = dune exec -- phox -I ${ROOT_DIR}lib
PHOXDEP = ${ROOT_DIR}tools/phoxdep -I ${ROOT_DIR}lib
PHOXJS = node -- ${ROOT_DIR}_build/default/src/phox.bc.js -I ${ROOT_DIR}lib
# 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 gawk`
PHOXTUT = ${AWK} -f ${ROOT_DIR}tools/phox_tut.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)