diff options
author | Konstantin Ananyev <konstantin.ananyev@intel.com> | 2021-09-30 10:05:39 +0000 |
---|---|---|
committer | Konstantin Ananyev <konstantin.ananyev@intel.com> | 2021-11-10 11:55:12 +0000 |
commit | b792c1f27d58040f3a815da18183d329bd6bd84b (patch) | |
tree | def302a01c2136211651fb90994806ae1ff0a32a /lib/Makefile | |
parent | f71107b4dd6a4b8b1cd28d7339c924f1b013cfa4 (diff) |
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 <konstantin.ananyev@intel.com>
Change-Id: I4a3c394758e183a3ddcdb45a0562a81583daaab6
Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
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 |