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/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: src/sys/boot/Makefile,v 1.18 2003/08/16 02:48:20 obrien Exp $
    2 
    3 .if ${MACHINE_ARCH} == "x86_64"
    4 .MAKEFLAGS:  MACHINE_ARCH=i386 MACHINE_PLATFORM=pc32 REALLY_X86_64=true
    5 .else
    6 .MAKEFLAGS:  REALLY_X86_64=false
    7 .endif
    8 
    9 # Build DLoader
   10 SUBDIR+=                dloader
   11 
   12 # Build OpenFirmware library
   13 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
   14 SUBDIR+=                ofw
   15 .endif
   16 
   17 # Pick the machine-dependant subdir based on the target architecture.
   18 .if ${REALLY_X86_64} == "true"
   19 SUBDIR+=                pc32
   20 .else
   21 SUBDIR+=                ${MACHINE_PLATFORM}
   22 .endif
   23 
   24 # Build EFI executable on ia64
   25 .if ${MACHINE_ARCH} == "ia64"
   26 SUBDIR+=                efi
   27 .endif
   28 
   29 .include <bsd.subdir.mk>

Cache object: f01d30a7abbdc41b493dfc28b002dc87


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