mbuf: optimize memory loads during freeing
[dpdk.git] / lib / librte_eal / freebsd / BSDmakefile.meson
1 #   SPDX-License-Identifier: BSD-3-Clause
2 #   Copyright(c) 2017 Intel Corporation.
3
4 # makefile for building kernel modules using meson
5 # takes parameters from the environment
6
7 # source file is passed via KMOD_SRC as full path, we only use final
8 # component of it, as VPATH is used to find actual file, so as to
9 # have the .o files placed in the build, not source directory
10 VPATH = ${KMOD_SRC:H}
11 SRCS = ${KMOD_SRC:T} device_if.h bus_if.h pci_if.h
12 CFLAGS += $(KMOD_CFLAGS)
13
14 .include <bsd.kmod.mk>