Makefile revision 190501
1# $FreeBSD: head/sys/modules/cpufreq/Makefile 190501 2009-03-28 08:54:47Z mr $
2
3.PATH:	${.CURDIR}/../../dev/cpufreq		\
4	${.CURDIR}/../../${MACHINE_ARCH}/cpufreq
5
6KMOD=	cpufreq
7SRCS=	ichss.c
8SRCS+=	bus_if.h cpufreq_if.h device_if.h pci_if.h
9
10.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
11.PATH:	${.CURDIR}/../../i386/cpufreq
12CFLAGS+= -I${.CURDIR}/../../contrib/dev/acpica
13
14SRCS+=	acpi_if.h opt_acpi.h
15SRCS+=	est.c hwpstate.c p4tcc.c powernow.c
16.endif
17
18.if ${MACHINE} == "i386"
19SRCS+=	smist.c
20.endif
21
22.include <bsd.kmod.mk>
23