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/boot/fdt/Makefile

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: releng/11.0/sys/boot/fdt/Makefile 298821 2016-04-29 22:42:59Z gonzo $
    2 
    3 .PATH:          ${.CURDIR}/../../contrib/libfdt/
    4 
    5 LIB=            fdt
    6 INTERNALLIB=
    7 
    8 # Vendor sources of libfdt.
    9 SRCS+=          fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c \
   10                 fdt_empty_tree.c
   11 
   12 # Loader's fdt commands extension sources.
   13 SRCS+=          fdt_loader_cmd.c fdt_overlay.c
   14 
   15 CFLAGS+=        -I${.CURDIR}/../../contrib/libfdt/ -I${.CURDIR}/../common/
   16 
   17 CFLAGS+=        -ffreestanding
   18 
   19 .if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "mips"
   20 CFLAGS+=        -msoft-float
   21 .endif
   22 
   23 .if ${MACHINE_ARCH} == "powerpc64"
   24 CFLAGS+=        -m32
   25 .endif
   26 
   27 CFLAGS+=        -Wformat -Wall
   28 
   29 .include <bsd.stand.mk>
   30 .include <bsd.lib.mk>

Cache object: 234200ab4d59ed334ca94fbc1058d30f


[ 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.