summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/host-cxxtools.in5
-rw-r--r--rules/host-cxxtools.make32
2 files changed, 37 insertions, 0 deletions
diff --git a/rules/host-cxxtools.in b/rules/host-cxxtools.in
new file mode 100644
index 000000000..1d1c10c8d
--- /dev/null
+++ b/rules/host-cxxtools.in
@@ -0,0 +1,5 @@
+## SECTION=hosttools_noprompt
+
+config HOST_CXXTOOLS
+ tristate
+ default ALLYES
diff --git a/rules/host-cxxtools.make b/rules/host-cxxtools.make
new file mode 100644
index 000000000..dfe64f0fc
--- /dev/null
+++ b/rules/host-cxxtools.make
@@ -0,0 +1,32 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2014 by Bernhard Seßler <bernhard.sessler@corscience.de>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_CXXTOOLS) += host-cxxtools
+
+#
+# Paths and names
+#
+HOST_CXXTOOLS_DIR := $(HOST_BUILDDIR)/$(CXXTOOLS)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_CXXTOOLS_CONF_TOOL := autoconf
+HOST_CXXTOOLS_CONF_OPT := \
+ $(HOST_AUTOCONF) \
+ --disable-dependency-tracking \
+ --disable-unittest \
+ --disable-demos
+
+# vim: syntax=make