]> gitweb @ CieloNegro.org - autobuild.git/blob - Build.rc.example
The 'source' built-in command tries to search for the given filename in PATH when...
[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 PKG_CONFIG_PATH environment variable to be set during the
22 # build. (Default: empty)
23 #
24 setPath PKG_CONFIG_PATH \
25     "/usr/pkg/lib/pkgconfig"
26
27 # -----------------------------------------------------------------------------
28 # The extra arguments to be passed to "./configure".
29 #
30 setConfigArgs \
31     --enable-maintainer-mode
32
33 # -----------------------------------------------------------------------------
34 # The name of "make" target called by "./Build" or "./Build
35 # build". (Default: "all")
36 #
37 setBuildTarget "all"
38
39 # -----------------------------------------------------------------------------
40 # The name of subdirectory in which the source tree of documentation
41 # resides, and the name of "make" target to build it. (Default: target
42 # "all" in the top_builddir)
43 #
44 setDocDirectory "."
45 setDocTarget "all"
46
47 # -----------------------------------------------------------------------------