libstand: Build libstand for x86_64, and libstand32 for the bios loader.
[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 .endif
10
11 # Pick the machine-dependant subdir based on the target architecture.
12 .if ${MACHINE_ARCH} == "x86_64"
13 SUBDIR+=                pc32
14 .else
15 SUBDIR+=                ${MACHINE_PLATFORM}
16 .endif
17
18 .include <bsd.subdir.mk>