]> gitweb @ CieloNegro.org - autobuild.git/blobdiff - Build.rc.example
renamed: Build.rc -> Build.rc.example
[autobuild.git] / Build.rc.example
diff --git a/Build.rc.example b/Build.rc.example
new file mode 100644 (file)
index 0000000..09795f9
--- /dev/null
@@ -0,0 +1,40 @@
+# -*- sh -*-
+# -----------------------------------------------------------------------------
+# Configuration file for ./Build
+
+# -----------------------------------------------------------------------------
+# The installation prefix, defaulting to "/usr/local". You can later
+# refer to the prefix by a variable named "prefix".
+#
+setPrefix "/usr/local"
+
+# -----------------------------------------------------------------------------
+# The PATH environment variable to be set during the build. (Default:
+# "/usr/bin:/bin")
+#
+setPath PATH \
+    "/usr/pkg/bin" \
+    "/usr/bin" \
+    "/bin"
+
+# -----------------------------------------------------------------------------
+# The extra arguments to be passed to "./configure".
+#
+setConfigArgs \
+    --enable-maintainer-mode
+
+# -----------------------------------------------------------------------------
+# The name of "make" target called by "./Build" or "./Build
+# build". (Default: "all")
+#
+setBuildTarget "all"
+
+# -----------------------------------------------------------------------------
+# The name of subdirectory in which the source tree of documentation
+# resides, and the name of "make" target to build it. (Default: target
+# "all" in the current directory)
+#
+setDocDirectory "."
+setDocTarget "all"
+
+# -----------------------------------------------------------------------------