From bee2b3595d762cca775eca4b054e5f06f245f4a1 Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Sun, 27 Mar 2005 21:47:12 +0000 Subject: [PATCH] Hook powernow up to the build for i386 and amd64. --- sys/modules/cpufreq/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys/modules/cpufreq/Makefile b/sys/modules/cpufreq/Makefile index be9e6b45791d..ec9c003d4ed2 100644 --- a/sys/modules/cpufreq/Makefile +++ b/sys/modules/cpufreq/Makefile @@ -9,7 +9,11 @@ SRCS= ichss.c SRCS+= bus_if.h cpufreq_if.h device_if.h pci_if.h .if ${MACHINE} == "i386" -SRCS+= est.c p4tcc.c +SRCS+= est.c p4tcc.c powernow.c +.endif + +.if ${MACHINE} == "amd64" +SRCS+= powernow.c .endif .include