]> gitweb @ CieloNegro.org - autobuild.git/blob - Build.rc.example
Split the script to several files.
[autobuild.git] / Build.rc.example
1 # -*- sh -*-
2 # -----------------------------------------------------------------------------
3 # Configuration file for ./Build
4
5 # -----------------------------------------------------------------------------
6 # The installation prefix, defaulting to "/usr/local". You can later
7 # refer to the prefix by a variable named "prefix".
8 #
9 setPrefix "/usr/local"
10
11 # -----------------------------------------------------------------------------
12 # The PATH environment variable to be set during the build. (Default:
13 # "/usr/bin:/bin")
14 #
15 setPath PATH \
16     "/usr/pkg/bin" \
17     "/usr/bin" \
18     "/bin"
19
20 # -----------------------------------------------------------------------------
21 # The extra arguments to be passed to "./configure".
22 #
23 setConfigArgs \
24     --enable-maintainer-mode
25
26 # -----------------------------------------------------------------------------
27 # The name of "make" target called by "./Build" or "./Build
28 # build". (Default: "all")
29 #
30 setBuildTarget "all"
31
32 # -----------------------------------------------------------------------------
33 # The name of subdirectory in which the source tree of documentation
34 # resides, and the name of "make" target to build it. (Default: target
35 # "all" in the current directory)
36 #
37 setDocDirectory "."
38 setDocTarget "all"
39
40 # -----------------------------------------------------------------------------