freebsd-dev/sys/conf/dtb.mk
Warner Losh 031beb4e23 sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:54:58 -06:00

45 lines
1.1 KiB
Makefile

#
# The include file <dtb.mk> handles building and installing dtb files.
#
# +++ variables +++
#
# DTC The Device Tree Compiler to use
#
# DTS List of the dts files to build and install.
#
# DTSO List of the dts overlay files to build and install.
#
# DTBDIR Base path for dtb modules [/boot/dtb]
#
# DTBOWN .dtb file owner. [${BINOWN}]
#
# DTBGRP .dtb file group. [${BINGRP}]
#
# DTBMODE Module file mode. [${BINMODE}]
#
# DESTDIR The tree where the module gets installed. [not set]
#
# +++ targets +++
#
# install:
# install the kernel module; if the Makefile
# does not itself define the target install, the targets
# beforeinstall and afterinstall may also be used to cause
# actions immediately before and after the install target
# is executed.
#
.include "dtb.build.mk"
.if !target(install) && !target(realinstall)
all: ${DTB} ${DTBO}
realinstall: _dtbinstall
.ORDER: beforeinstall _dtbinstall
CLEANFILES+=${DTB} ${DTBO}
.endif # !target(install) && !target(realinstall)
.include <bsd.dep.mk>
.include <bsd.obj.mk>
.include <bsd.links.mk>