net/ice/base: add command to LLDP
[dpdk.git] / drivers / net / octeontx / base / meson.build
index 09f657a..b8fe4b3 100644 (file)
@@ -10,11 +10,15 @@ 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
 base_lib = static_library('octeontx_base', sources,
-       c_args: cflags,
+       c_args: c_args,
        dependencies: static_objs,
 )