diff options
author | Ole Troan <ot@cisco.com> | 2016-06-15 14:29:08 +0200 |
---|---|---|
committer | Ole Troan <ot@cisco.com> | 2016-06-15 16:10:08 +0200 |
commit | 3b3688f9d3a640a169e9c7fc858d36ab3aeb147e (patch) | |
tree | 5fc72f464da8410e9a838aef62c1bc5a8886a181 /plugins/configure.ac | |
parent | f0f852251c885fc5f73125a4365cf356feeb0cdd (diff) |
6rd: Move to plugin
- Change toplevel plugins make target. Now builds all plugins under
plugins/. (Apart from sample-plugin).
- Move sixrd code to plugins directory and make necessary changes to
make it a plugin
- Remove 6rd hooks from IP lookup code
Change-Id: I447e92e3bee240cd8de01d0abac2e1708e8c27d1
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'plugins/configure.ac')
-rw-r--r-- | plugins/configure.ac | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/configure.ac b/plugins/configure.ac new file mode 100644 index 00000000000..bf01aacb7f3 --- /dev/null +++ b/plugins/configure.ac @@ -0,0 +1,23 @@ +AC_INIT(core_plugins, 1.0) +LT_INIT +AM_INIT_AUTOMAKE + +AM_PROG_AS +AC_PROG_CC +AM_PROG_CC_C_O + +AC_ARG_ENABLE(tests, + AC_HELP_STRING([--enable-tests], [Build unit tests]), + [enable_tests=1], + [enable_tests=0]) + +AC_ARG_WITH(plugin-toolkit, + AC_HELP_STRING([--with-plugin-toolkit], + [build using the vpp toolkit]), + [with_plugin_toolkit=${prefix}/include], + [with_plugin_toolkit=.]) + +AC_SUBST(TOOLKIT_INCLUDE,[${with_plugin_toolkit}]) +AM_CONDITIONAL(WITH_PLUGIN_TOOLKIT, test "$with_plugin_toolkit" != ".") +AM_CONDITIONAL(ENABLE_TESTS, test "$enable_tests" = "1") +AC_OUTPUT([Makefile]) |