drivers: change indentation in build files
[dpdk.git] / drivers / net / txgbe / base / meson.build
index 9755bbb..94db39c 100644 (file)
@@ -2,21 +2,26 @@
 # Copyright(c) 2015-2020
 
 sources = [
-       'txgbe_eeprom.c',
-       'txgbe_hw.c',
-       'txgbe_mng.c',
+        'txgbe_dcb_hw.c',
+        'txgbe_dcb.c',
+        'txgbe_eeprom.c',
+        'txgbe_hw.c',
+        'txgbe_mbx.c',
+        'txgbe_mng.c',
+        'txgbe_phy.c',
+        'txgbe_vf.c',
 ]
 
 error_cflags = []
 
 c_args = cflags
 foreach flag: error_cflags
-       if cc.has_argument(flag)
-               c_args += flag
-       endif
+    if cc.has_argument(flag)
+        c_args += flag
+    endif
 endforeach
 
 base_lib = static_library('txgbe_base', sources,
-       dependencies: static_rte_eal,
-       c_args: c_args)
+    dependencies: static_rte_eal,
+    c_args: c_args)
 base_objs = base_lib.extract_all_objects()