net/ice/base: add command to LLDP
[dpdk.git] / drivers / net / octeontx / base / meson.build
index a06a2c8..b8fe4b3 100644 (file)
@@ -10,13 +10,13 @@ sources = [
 depends = ['ethdev', 'mempool_octeontx']
 static_objs = []
 foreach d: depends
-       static_objs += [get_variable('static_rte_' + d)]
+       if not is_variable('shared_rte_' + d)
+               subdir_done()
+       endif
+       static_objs += get_variable('static_rte_' + d)
 endforeach
 
 c_args = cflags
-if allow_experimental_apis
-       c_args += '-DALLOW_EXPERIMENTAL_API'
-endif
 base_lib = static_library('octeontx_base', sources,
        c_args: c_args,
        dependencies: static_objs,