The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/conf/dtb.mk

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD$
    2 #
    3 # The include file <dtb.mk> handles building and installing dtb files.
    4 #
    5 # +++ variables +++
    6 #
    7 # DTC           The Device Tree Compiler to use
    8 #
    9 # DTS           List of the dts files to build and install.
   10 #
   11 # DTSO          List of the dts overlay files to build and install.
   12 #
   13 # DTBDIR        Base path for dtb modules [/boot/dtb]
   14 #
   15 # DTBOWN        .dtb file owner. [${BINOWN}]
   16 #
   17 # DTBGRP        .dtb file group. [${BINGRP}]
   18 #
   19 # DTBMODE       Module file mode. [${BINMODE}]
   20 #
   21 # DESTDIR       The tree where the module gets installed. [not set]
   22 #
   23 # +++ targets +++
   24 #
   25 #       install:
   26 #               install the kernel module; if the Makefile
   27 #               does not itself define the target install, the targets
   28 #               beforeinstall and afterinstall may also be used to cause
   29 #               actions immediately before and after the install target
   30 #               is executed.
   31 #
   32 
   33 .include "dtb.build.mk"
   34 
   35 .if !target(install) && !target(realinstall)
   36 all: ${DTB} ${DTBO}
   37 realinstall: _dtbinstall
   38 .ORDER: beforeinstall _dtbinstall
   39 
   40 CLEANFILES+=${DTB} ${DTBO}
   41 .endif # !target(install) && !target(realinstall)
   42 
   43 .include <bsd.dep.mk>
   44 .include <bsd.obj.mk>
   45 .include <bsd.links.mk>

Cache object: 341c25e21f7fa54d5e4e59233ec385ee


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.