AcpiTbDeleteTable() now takes a (ACPI_TABLE_DESC *) as its argument,
[dragonfly.git] / sys / boot / Makefile
blob554c9a59d82ad2b96198062a09a187a0c2b08fff
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.4 2005/02/19 23:19:51 swildner Exp $
4 .if ${MACHINE_ARCH} == "amd64"
5 .MAKEFLAGS: MACHINE_ARCH=i386 MACHINE=i386 REALLY_AMD64=true
6 .endif
8 .if !defined(NOFORTH) && ${MACHINE_ARCH} != "powerpc"
9 # Build the add-in FORTH interpreter
10 SUBDIR+= ficl
11 .endif
13 # Build OpenFirmware library
14 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "sparc64"
15 SUBDIR+= ofw
16 .endif
18 # Pick the machine-dependant subdir based on the target architecture.
19 SUBDIR+= ${MACHINE}
21 # Build EFI executable on ia64
22 .if ${MACHINE_ARCH} == "ia64"
23 SUBDIR+= efi
24 .endif
26 .include <bsd.subdir.mk>