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/zfs/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/8.1/sys/boot/zfs/Makefile 185711 2008-12-06 14:45:03Z ps $
    2 
    3 LIB=            zfsboot
    4 INTERNALLIB=
    5 
    6 SRCS+=          zfs.c
    7 
    8 CFLAGS+=        -I${.CURDIR}/../common -I${.CURDIR}/../.. -I.
    9 CFLAGS+=        -I${.CURDIR}/../../../lib/libstand
   10 CFLAGS+=        -I${.CURDIR}/../../cddl/boot/zfs
   11 
   12 CFLAGS+=        -ffreestanding
   13 .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64"
   14 CFLAGS+=        -mpreferred-stack-boundary=2
   15 CFLAGS+=        -mno-mmx -mno-3dnow -mno-sse -mno-sse2
   16 .endif
   17 .if ${MACHINE_ARCH} == "i386"
   18 CFLAGS+=        -mno-sse3
   19 .endif
   20 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "arm"
   21 CFLAGS+=        -msoft-float
   22 .endif
   23 .if ${MACHINE_ARCH} == "amd64"
   24 CFLAGS+=        -m32 -march=i386
   25 .endif
   26 
   27 CFLAGS+=        -Wformat -Wall
   28 
   29 .if ${MACHINE_ARCH} == "amd64"
   30 CLEANFILES+=    machine
   31 machine:
   32         ln -sf ${.CURDIR}/../../i386/include machine
   33 .endif
   34 
   35 .include <bsd.lib.mk>
   36 
   37 .if ${MACHINE_ARCH} == "amd64"
   38 beforedepend ${OBJS}: machine
   39 .endif

Cache object: 7af3730c6425926955f3afd8d6a74c90


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