ea3e1fc875
directory and GNU autotools setup. Change-Id: I6c59d1297389c9413db0c0b9bdf3b759080bf1b8 Signed-off-by: Ole Troan <ot@cisco.com>
18 lines
450 B
Plaintext
18 lines
450 B
Plaintext
AC_INIT(ioam_plugin, 1.0)
|
|
LT_INIT
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AM_PROG_AS
|
|
AC_PROG_CC
|
|
AM_PROG_CC_C_O
|
|
|
|
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" != ".")
|
|
AC_OUTPUT([Makefile])
|