New upstream version 18.08
[deb_dpdk.git] / drivers / net / failsafe / meson.build
diff --git a/drivers/net/failsafe/meson.build b/drivers/net/failsafe/meson.build
new file mode 100644 (file)
index 0000000..a249ff4
--- /dev/null
@@ -0,0 +1,23 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright(c) 2018 Intel Corporation
+
+cflags += '-std=gnu99'
+cflags += '-D_DEFAULT_SOURCE'
+cflags += '-D_XOPEN_SOURCE=700'
+cflags += '-pedantic'
+if host_machine.system() == 'linux'
+       cflags += '-DLINUX'
+else
+       cflags += '-DBSD'
+endif
+
+allow_experimental_apis = true
+
+sources = files('failsafe_args.c',
+       'failsafe.c',
+       'failsafe_eal.c',
+       'failsafe_ether.c',
+       'failsafe_flow.c',
+       'failsafe_intr.c',
+       'failsafe_ops.c',
+       'failsafe_rxtx.c')