Finish cleanup of .../plugins/{configure.ac, Makefile.am}
[vpp.git] / plugins / sample-plugin / configure.ac
1 AC_INIT(sample_plugin, 1.0)
2 LT_INIT
3 AM_INIT_AUTOMAKE
4 AM_SILENT_RULES([yes])
5
6 AM_PROG_AS
7 AC_PROG_CC
8 AM_PROG_CC_C_O
9
10 AC_ARG_WITH(plugin-toolkit,
11             AC_HELP_STRING([--with-plugin-toolkit],
12             [build using the vpp toolkit]),
13             [with_plugin_toolkit=${prefix}/include],
14             [with_plugin_toolkit=.])
15
16 AC_SUBST(TOOLKIT_INCLUDE,[${with_plugin_toolkit}])
17 AM_CONDITIONAL(WITH_PLUGIN_TOOLKIT, test "$with_plugin_toolkit" != ".")
18 AC_OUTPUT([Makefile])