~ chicken-core (chicken-5) /config.make


 1### config.make
 2
 3# You can set build options in this file instead of passing them on
 4# the command line. Please consult the README file for more
 5# information.
 6
 7
 8# Select platform to use:
 9#PLATFORM=linux
10
11# Installation prefix:
12#PREFIX=/usr/local
13
14
15### The options below are optional and should be used with care
16
17# Disable optimizations:
18#DEBUGBUILD=1
19
20# Build static runtime library only:
21#STATICBUILD=1
22
23# Use alternative C compiler
24#C_COMPILER=
25
26# Add additional C compiler options:
27#C_COMPILER_OPTIMIZATION_OPTIONS=...
28
29# Use alternative resource compiler (for Win32 builds)
30#RC_COMPILER=
31
32# Choose prefix to be added to installed programs:
33#PROGRAM_PREFIX= 
34
35# Choose suffix to be added to installed programs:
36#PROGRAM_SUFFIX=
37
38# Specification of host (build) system (machine + platform) for cross-compiling:
39#HOSTSYSTEM=
40
41# Specification of target (runtime) system for cross-compiling:
42#TARGETSYSTEM= 
43
44# Where the install-location of a cross-build is
45#TARGET_PREFIX=
46
47# Specify that the sources are in a different directory than ".":
48#SRCDIR=
49
50# Use alternative directory for installed binary extensions:
51#VARDIR=
Trap