]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/cpufreq/Makefile
bhnd(9): Fix a few mandoc related issues
[FreeBSD/FreeBSD.git] / sys / modules / cpufreq / Makefile
1 # $FreeBSD$
2
3 .PATH:  ${SRCTOP}/sys/dev/cpufreq               \
4         ${SRCTOP}/sys/${MACHINE_CPUARCH}/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:  ${SRCTOP}/sys/x86/cpufreq
12
13 SRCS+=  acpi_if.h opt_acpi.h
14 SRCS+=  est.c hwpstate_amd.c p4tcc.c powernow.c hwpstate_intel.c
15 .endif
16
17 .if ${MACHINE} == "i386"
18 SRCS+=  smist.c
19 .endif
20
21 .if ${MACHINE} == "powerpc"
22 .PATH:  ${SRCTOP}/sys/powerpc/cpufreq
23 SRCS+= dfs.c
24 .endif
25
26 .include <bsd.kmod.mk>