ea3e1fc875
directory and GNU autotools setup. Change-Id: I6c59d1297389c9413db0c0b9bdf3b759080bf1b8 Signed-off-by: Ole Troan <ot@cisco.com>
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
ioam-plugin_configure_depend = \
|
|
vppinfra-install \
|
|
svm-install \
|
|
vlib-api-install \
|
|
vlib-install \
|
|
vnet-install \
|
|
vpp-install \
|
|
vpp-api-test-install
|
|
|
|
ioam-plugin_CPPFLAGS = $(call installed_includes_fn, \
|
|
vppinfra \
|
|
openssl \
|
|
svm \
|
|
vlib \
|
|
vlib-api \
|
|
vnet \
|
|
vpp \
|
|
vpp-api-test)
|
|
|
|
ioam-plugin_LDFLAGS = $(call installed_libs_fn, \
|
|
vppinfra \
|
|
openssl \
|
|
svm \
|
|
vlib \
|
|
vlib-api \
|
|
vnet \
|
|
vpp \
|
|
vpp-api-test)
|
|
|
|
ioam-plugin_post_install = \
|
|
mkdir -p $(PACKAGE_INSTALL_DIR)/$(arch_lib_dir)/vlib_plugins ; \
|
|
cp $(PACKAGE_INSTALL_DIR)/$(arch_lib_dir)/*.so \
|
|
$(PACKAGE_INSTALL_DIR)/$(arch_lib_dir)/vlib_plugins
|
|
|
|
ioam-plugin_image_include = echo $(arch_lib_dir)/vlib_plugins
|
|
|
|
ifneq ($($(PLATFORM)_uses_dpdk),no)
|
|
ioam-plugin_configure_args = --with-dpdk
|
|
ifeq ($($(PLATFORM)_uses_external_dpdk),yes)
|
|
ioam-plugin_CPPFLAGS += -I$($(PLATFORM)_dpdk_inc_dir)
|
|
ioam-plugin_LDFLAGS += -L$($(PLATFORM)_dpdk_lib_dir)
|
|
else
|
|
ioam-plugin_configure_depend += dpdk-install
|
|
ioam-plugin_CPPFLAGS += $(call installed_includes_fn, dpdk)
|
|
ioam-plugin_LDFLAGS += $(call installed_libs_fn, dpdk)
|
|
endif
|
|
endif
|