Virtio_Balloon implementation for DragonFly
[dragonfly.git] / sys / boot / Makefile
1 # $FreeBSD: src/sys/boot/Makefile,v 1.18 2003/08/16 02:48:20 obrien Exp $
2
3 # Build DLoader
4 SUBDIR+=                dloader
5
6 .if ${MACHINE_ARCH} == "x86_64"
7 # Build i386 version of libstand
8 SUBDIR+=                libstand32
9 SUBDIR+=                dloader32
10 .endif
11
12 # Pick the machine-dependant subdir based on the target architecture.
13 .if ${MACHINE_ARCH} == "x86_64"
14 SUBDIR+=                pc32
15 .else
16 SUBDIR+=                ${MACHINE_PLATFORM}
17 .endif
18
19 # UEFI support
20 SUBDIR+=                efi
21
22 .include <bsd.subdir.mk>