]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/modules/cpufreq/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / modules / cpufreq / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${.CURDIR}/../../dev/cpufreq            \
4         ${.CURDIR}/../../${MACHINE_ARCH}/cpufreq
5
6 KMOD=   cpufreq
7 SRCS=   ichss.c
8 SRCS+=  bus_if.h cpufreq_if.h device_if.h pci_if.h
9
10 .if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
11 .PATH:  ${.CURDIR}/../../i386/cpufreq
12 CFLAGS+= -I${.CURDIR}/../../contrib/dev/acpica
13
14 SRCS+=  acpi_if.h opt_acpi.h
15 SRCS+=  est.c p4tcc.c powernow.c
16 .endif
17
18 .if ${MACHINE} == "i386"
19 SRCS+=  smist.c
20 .endif
21
22 .include <bsd.kmod.mk>