numam-dpdk/lib/librte_eal/freebsd/BSDmakefile.meson
Xiaolong Ye 7cf68e4ec4 eal: replace license text with SPDX tag
Signed-off-by: Xiaolong Ye <xiaolong.ye@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
2019-07-29 13:31:45 +02:00

15 lines
495 B
Plaintext

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation.
# makefile for building kernel modules using meson
# takes parameters from the environment
# source file is passed via KMOD_SRC as full path, we only use final
# component of it, as VPATH is used to find actual file, so as to
# have the .o files placed in the build, not source directory
VPATH = ${KMOD_SRC:H}
SRCS = ${KMOD_SRC:T} device_if.h bus_if.h pci_if.h
CFLAGS += $(KMOD_CFLAGS)
.include <bsd.kmod.mk>