bbae375ca2
Also enable silent rules where missing Change-Id: Ia521886815c862b013f01df4cc18fd8a298aaaa1 Signed-off-by: Damjan Marion <damarion@cisco.com>
33 lines
916 B
Plaintext
33 lines
916 B
Plaintext
AC_INIT(vpp-api-test, 1.0)
|
|
LT_INIT
|
|
AM_INIT_AUTOMAKE
|
|
AM_SILENT_RULES([yes])
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_ARG_WITH(q-plugin-prefix,
|
|
AC_HELP_STRING([--with-q-plugin-prefix],[vlib plugin prefix]),
|
|
[case $with_q_plugin_prefix in
|
|
*) ;;
|
|
esac])
|
|
|
|
AC_ARG_WITH(q-platform,
|
|
AC_HELP_STRING([--with-q-platform],[Build version for given platform (qnative)]),
|
|
[case $with_q_platform in
|
|
qnative) ;;
|
|
vpp) with_q_platform=vpp;;
|
|
*) with_q_platform=qnative;;
|
|
esac])
|
|
|
|
AC_ARG_WITH(dpdk,
|
|
AC_HELP_STRING([--with-dpdk],[Use the Intel dpdk]),
|
|
[with_dpdk=1],
|
|
[with_dpdk=0])
|
|
|
|
AC_SUBST(Q_PLATFORM_DEFINE,[-DQ_PLATFORM_${with_q_platform}])
|
|
AC_SUBST(Q_PLATFORM_PLUGPATH,[-DQ_PLUGIN_PREFIX=${with_q_plugin_prefix}])
|
|
AC_SUBST(DPDK,[-DDPDK=${with_dpdk}])
|
|
AM_CONDITIONAL(WITH_DPDK, test "$with_dpdk" = "1")
|
|
|
|
AC_OUTPUT([Makefile])
|