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