bbae375ca2
Also enable silent rules where missing Change-Id: Ia521886815c862b013f01df4cc18fd8a298aaaa1 Signed-off-by: Damjan Marion <damarion@cisco.com>
13 lines
312 B
Plaintext
13 lines
312 B
Plaintext
AC_INIT(perftool, 2.0)
|
|
AM_INIT_AUTOMAKE
|
|
AM_SILENT_RULES([yes])
|
|
|
|
AC_CHECK_LIB([vppinfra], [clib_mem_get_page_size],,
|
|
AC_MSG_ERROR([Please install the vpp-lib package]))
|
|
AC_CHECK_HEADER([vppinfra/clib.h],,
|
|
AC_MSG_ERROR([Please install the vpp-dev package]))
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
AC_OUTPUT([Makefile])
|