1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../dev/cpufreq \ 4 ${.CURDIR}/../../${MACHINE_ARCH}/cpufreq 5 6KMOD= cpufreq 7WARNS?= 2 8SRCS= ichss.c 9SRCS+= bus_if.h cpufreq_if.h device_if.h pci_if.h 10 11.if ${MACHINE} == "i386" 12SRCS+= est.c p4tcc.c powernow.c 13.endif 14 15.if ${MACHINE} == "amd64" 16.PATH: ${.PATH} ${.CURDIR}/../../i386/cpufreq 17SRCS+= powernow.c 18.endif 19 20.include <bsd.kmod.mk> 21