diff options
author | Damjan Marion <damarion@cisco.com> | 2016-02-25 23:17:38 +0100 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2016-02-26 13:17:30 +0100 |
commit | e936bbe5945ca3c0f522f6c0abdfbdaa407bcb84 (patch) | |
tree | 28ccdd0be90ff9236fc57cf058a42d378ddbb250 /build-data/packages/vpp.mk | |
parent | 7f620976e2cb900fa5e0dccdbb769e3cc208841d (diff) |
Add support for native vpp_lite (non-dpdk) platform
Change-Id: Icaa71957f67b923bc9795baa78c7495055615672
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'build-data/packages/vpp.mk')
-rw-r--r-- | build-data/packages/vpp.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/build-data/packages/vpp.mk b/build-data/packages/vpp.mk index 02aca4e6426..54aa548482c 100644 --- a/build-data/packages/vpp.mk +++ b/build-data/packages/vpp.mk @@ -1,6 +1,5 @@ vpp_configure_depend = \ vppinfra-install \ - dpdk-install \ svm-install \ vlib-api-install \ vlib-install \ @@ -15,7 +14,6 @@ vpp_configure_args += $(vpp_configure_args_$(PLATFORM)) vpp_CPPFLAGS = $(call installed_includes_fn, \ vppinfra \ - dpdk \ openssl \ svm \ vlib \ @@ -24,9 +22,14 @@ vpp_CPPFLAGS = $(call installed_includes_fn, \ vpp_LDFLAGS = $(call installed_libs_fn, \ vppinfra \ - dpdk \ openssl \ svm \ vlib \ vlib-api \ vnet) + +ifeq ($($(PLATFORM)_uses_dpdk),yes) +vpp_configure_depend += dpdk-install +vpp_CPPFLAGS += $(call installed_includes_fn, dpdk) +vpp_LDFLAGS += $(call installed_libs_fn, dpdk) +endif |