adf93ca564
Define variables for "is_linux", "is_freebsd" and "is_windows" to make the code shorter for comparisons and more readable. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Reviewed-by: David Marchand <david.marchand@redhat.com> Acked-by: Luca Boccassi <bluca@debian.org>
12 lines
193 B
Meson
12 lines
193 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2018 NXP
|
|
|
|
if not is_linux
|
|
build = false
|
|
endif
|
|
|
|
sources = files('enetc_ethdev.c',
|
|
'enetc_rxtx.c')
|
|
|
|
includes += include_directories('base')
|