summaryrefslogtreecommitdiff
path: root/libprint
diff options
context:
space:
mode:
Diffstat (limited to 'libprint')
-rw-r--r--libprint/libprint/buildfile26
1 files changed, 19 insertions, 7 deletions
diff --git a/libprint/libprint/buildfile b/libprint/libprint/buildfile
index 4a888f3..c2a6d79 100644
--- a/libprint/libprint/buildfile
+++ b/libprint/libprint/buildfile
@@ -9,21 +9,30 @@ lib{print}: {hxx ixx txx cxx}{** -version} hxx{version} $imp_libs $int_libs
# clean results in a state identical to distributed).
#
hxx{version}: in{version} $src_root/manifest
-hxx{version}: dist = true
-hxx{version}: clean = ($src_root != $out_root)
+hxx{version}:
+{
+ dist = true
+ clean = ($src_root != $out_root)
+}
+# Build options.
+#
cxx.poptions =+ "-I$out_root" "-I$src_root"
obja{*}: cxx.poptions += -DLIBPRINT_STATIC_BUILD
objs{*}: cxx.poptions += -DLIBPRINT_SHARED_BUILD
-lib{print}: cxx.export.poptions = "-I$out_root" "-I$src_root"
+# Export options.
+#
+lib{print}:
+{
+ cxx.export.poptions = "-I$out_root" "-I$src_root"
+ cxx.export.libs = $int_libs
+}
liba{print}: cxx.export.poptions += -DLIBPRINT_STATIC
libs{print}: cxx.export.poptions += -DLIBPRINT_SHARED
-lib{print}: cxx.export.libs = $int_libs
-
# For pre-releases use the complete version to make sure they cannot be used
# in place of another pre-release or the final version. See the version module
# for details on the version.* variable values.
@@ -36,5 +45,8 @@ else
# Install into the libprint/ subdirectory of, say, /usr/include/
# recreating subdirectories.
#
-{hxx ixx txx}{*}: install = include/libprint/
-{hxx ixx txx}{*}: install.subdirs = true
+{hxx ixx txx}{*}:
+{
+ install = include/libprint/
+ install.subdirs = true
+}