Sync zoneinfo database with tzdata2011m from munnari.oz.au
[dragonfly.git] / sys / boot / Makefile
blob783c5e4072c9df224dda204f71e014e620ad9513
1 # $FreeBSD: src/sys/boot/Makefile,v 1.18 2003/08/16 02:48:20 obrien Exp $
2 # $DragonFly: src/sys/boot/Makefile,v 1.5 2007/05/18 07:41:40 dillon Exp $
4 .if ${MACHINE_ARCH} == "x86_64"
5 .MAKEFLAGS: MACHINE_ARCH=i386 MACHINE_PLATFORM=pc32 REALLY_X86_64=true
6 .endif
8 # Build DLoader
9 SUBDIR+= dloader
11 # Build OpenFirmware library
12 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
13 SUBDIR+= ofw
14 .endif
16 # Pick the machine-dependant subdir based on the target architecture.
17 SUBDIR+= ${MACHINE_PLATFORM}
19 # Build EFI executable on ia64
20 .if ${MACHINE_ARCH} == "ia64"
21 SUBDIR+= efi
22 .endif
24 .include <bsd.subdir.mk>