mirror of
https://github.com/opnsense/src.git
synced 2026-03-03 13:51:30 -05:00
14 lines
386 B
Makefile
14 lines
386 B
Makefile
# $FreeBSD$
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64"
|
|
.error "ACPI can only be compiled into the kernel on the amd64 and ia64 platforms"
|
|
.endif
|
|
|
|
.if ${MACHINE} != "i386"
|
|
.error "The ACPI module is only for i386"
|
|
.endif
|
|
|
|
SUBDIR= acpi acpi_aiboost acpi_asus acpi_fujitsu acpi_ibm \
|
|
acpi_panasonic acpi_sony acpi_toshiba acpi_video acpi_dock
|
|
|
|
.include <bsd.subdir.mk>
|