From b792c1f27d58040f3a815da18183d329bd6bd84b Mon Sep 17 00:00:00 2001 From: Konstantin Ananyev Date: Thu, 30 Sep 2021 10:05:39 +0000 Subject: tldk: swtich to use DPDK 20.11 LTS As in DPDK 20.11 'make' is not supported any more, switch to use pkg-conf approach. Note that RTE_SDK now should point to your DPDK package installation path. Signed-off-by: Konstantin Ananyev Change-Id: I4a3c394758e183a3ddcdb45a0562a81583daaab6 Signed-off-by: Konstantin Ananyev --- lib/Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile index 8d61a08..9c1ca95 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -19,12 +19,17 @@ ifeq ($(TLDK_ROOT),) $(error "Please define TLDK_SDK environment variable") endif -include $(RTE_SDK)/mk/rte.vars.mk - DIRS-y += libtle_misc DIRS-y += libtle_dring DIRS-y += libtle_timer DIRS-y += libtle_memtank DIRS-y += libtle_l4p +DEPDIR-libtle_l4p += libtle_misc +DEPDIR-libtle_l4p += libtle_dring +DEPDIR-libtle_l4p += libtle_timer +DEPDIR-libtle_l4p += libtle_memtank + +libtle_l4p: $(DEPDIR-libtle_l4p) + include $(TLDK_ROOT)/mk/tle.subdir.mk -- cgit 1.2.3-korg