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/10.3/sys/boot/fdt/Makefile 275763 2014-12-14 15:33:45Z andrew $
    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 
   11 # Loader's fdt commands extension sources.
   12 SRCS+=          fdt_loader_cmd.c
   13 
   14 CFLAGS+=        -I${.CURDIR}/../../contrib/libfdt/ -I${.CURDIR}/../common/
   15 
   16 CFLAGS+=        -ffreestanding
   17 
   18 .if ${MACHINE_CPUARCH} == "powerpc" || ${MACHINE_CPUARCH} == "arm"
   19 CFLAGS+=        -msoft-float
   20 .endif
   21 
   22 .if ${MACHINE_ARCH} == "powerpc64"
   23 CFLAGS+=        -m32
   24 .endif
   25 
   26 CFLAGS+=        -Wformat -Wall
   27 
   28 .include <bsd.lib.mk>

Cache object: adbc4763881ae378c655c4942ac73cb4


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