
Change-Id: Icaa71957f67b923bc9795baa78c7495055615672 Signed-off-by: Damjan Marion <damarion@cisco.com>
29 lines
660 B
Makefile
29 lines
660 B
Makefile
vnet_configure_depend = \
|
|
vppinfra-install \
|
|
svm-install \
|
|
vlib-api-install \
|
|
vlib-install
|
|
|
|
vnet_CPPFLAGS = $(call installed_includes_fn, \
|
|
vppinfra \
|
|
openssl \
|
|
svm \
|
|
vlib \
|
|
vlib-api)
|
|
|
|
vnet_LDFLAGS = $(call installed_libs_fn, \
|
|
vppinfra \
|
|
openssl \
|
|
svm \
|
|
vlib \
|
|
vlib-api)
|
|
|
|
# Platform dependent configure flags
|
|
vnet_configure_args += $(vnet_configure_args_$(PLATFORM))
|
|
|
|
ifeq ($($(PLATFORM)_uses_dpdk),yes)
|
|
vnet_configure_depend += dpdk-install
|
|
vnet_CPPFLAGS += $(call installed_includes_fn, dpdk)
|
|
vnet_LDFLAGS += $(call installed_libs_fn, dpdk)
|
|
endif
|