summaryrefslogtreecommitdiffstats
path: root/rules/host-tntnet.make
diff options
context:
space:
mode:
authorBernhard Sessler <bernhard.sessler@corscience.de>2014-02-18 08:40:26 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2014-02-18 11:47:58 +0100
commit0142691e855453934a4a32620dceacfe71bfee88 (patch)
treee9a50da1f70e14c306a410bf85b06f55330b90b7 /rules/host-tntnet.make
parent7fb9566bad04ac1c13a8c5561d5f0efb84a7dfc0 (diff)
downloadptxdist-0142691e855453934a4a32620dceacfe71bfee88.tar.gz
ptxdist-0142691e855453934a4a32620dceacfe71bfee88.tar.xz
tntnet: Add host package
This host package builds the tntnet SDK, which is required in order to generate the pre-compiled C++ modules. Signed-off-by: Bernhard Sessler <bernhard.sessler@corscience.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-tntnet.make')
-rw-r--r--rules/host-tntnet.make38
1 files changed, 38 insertions, 0 deletions
diff --git a/rules/host-tntnet.make b/rules/host-tntnet.make
new file mode 100644
index 000000000..b22a3c412
--- /dev/null
+++ b/rules/host-tntnet.make
@@ -0,0 +1,38 @@
+# -*-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_TNTNET) += host-tntnet
+
+#
+# Paths and names
+#
+HOST_TNTNET_DIR := $(HOST_BUILDDIR)/$(TNTNET)
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+HOST_TNTNET_CONF_TOOL := autoconf
+HOST_TNTNET_CONF_OPT := \
+ $(HOST_AUTOCONF) \
+ --disable-dependency-tracking \
+ --disable-unittest \
+ --with-demos=no \
+ --with-epoll=no \
+ --with-sdk=yes \
+ --with-sendfile=no \
+ --with-server=no \
+ --with-ssl=no \
+ --with-stressjob=no
+
+# vim: syntax=make