9456e37730
The four modules are apple_smc for the core functions, apple_smc_acpi for attachment at acpi, and apple_smc_fan & apple_smc_temp for stuff on the SMC. Seems like there's a lot more bookkeeping necessary to maintain children of an applesmc device implemented by loadable modules. Maybe there's a better way I just haven't figured out yet.
16 lines
249 B
Makefile
16 lines
249 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/04/01 17:48:39 riastradh Exp $
|
|
|
|
.include "../Makefile.inc"
|
|
|
|
.PATH: ${S}/dev/acpi
|
|
|
|
KMOD= apple_smc_acpi
|
|
IOCONF= apple_smc_acpi.ioconf
|
|
SRCS= apple_smc_acpi.c
|
|
|
|
WARNS= 4
|
|
|
|
CPPFLAGS+= -DDIAGNOSTIC
|
|
|
|
.include <bsd.kmodule.mk>
|