File: Makefile.conf.template

package info (click to toggle)
cduce 0.5.3-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,180 kB
  • ctags: 3,176
  • sloc: ml: 20,028; xml: 5,546; makefile: 427; sh: 133
file content (56 lines) | stat: -rw-r--r-- 1,508 bytes parent folder | download | duplicates (7)
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
## CDuce compilation options
##
## You can either modify this file, or run the configure script

# build CDuce using OCaml native code compiler
NATIVE = true

# profiling support
PROFILE = false

# .mli/.cmi file support to interface CDuce with OCaml.
# possible values: false, flat, tree
# - if ML_INTERFACE=flat, set ML_MODULES to a directory that
#   contains all the compiled modules from the directory
#   utils, parsing, typing of the OCaml compilers
# - if ML_INTERFACE=tree, set ML_MODULES to a directory
#   with three subdirectories utils/ parsing/ typing/
#   that contain the compiled modules
# (see cdo2cmo/Makefile for more details)
ML_INTERFACE = false


# use wlex lexers for parsing XML files with PXP
PXP_WLEX = false

# include support for expat
EXPAT = false

# use curl library to load remote xml files and schemas
CURL = false

# use netclient library to load remote xml files and schemas
NETCLIENT = true

# Installation directories
PREFIX = /usr/local
BINDIR = $(PREFIX)/bin
MANDIR = $(PREFIX)/man

# Customize the following variables to match the settings
# of your local web server

# Root directory of your local web-server
WEB_PREFIX = /var/www

# directory for installing the cgi-bin of the cduce interpreter
CGI_DIR = $(WEB_PREFIX)/cgi-bin

# installation directory for the website and man-pages
HTML_DIR = $(WEB_PREFIX)/html

# where temporary files of local interactive interpreter are put
SESSION_DIR = /tmp/cduce_sessions

# extension for programs (.exe under Cygwin)
EXE =