/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
kernel/freebsd/BSDmakefile.meson
18 строк
674 B
Bruce Richardson
build: clean up building kernel modules using meson
17 апр 2018, 17:09
17 апр 2018, 17:09
3f70856
Код
Авторство
О чём код?
# 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 relative path, we only use final # (tail) component of it (:T), as VPATH is used to find actual file. The # VPATH is similarly extracted from the non-final (head) portion of the # path (:H) converted to absolute path (:tA). This use of VPATH is to have # the .o files placed in the build, not source directory VPATH := ${KMOD_SRC:H:tA} SRCS := ${KMOD_SRC:T} device_if.h bus_if.h pci_if.h CFLAGS += $(KMOD_CFLAGS) .OBJDIR: ${KMOD_OBJDIR} .include <bsd.kmod.mk>