Deleted Added
full compact
Makefile (144412) Makefile (144630)
1# $FreeBSD: head/sys/modules/cpufreq/Makefile 144412 2005-03-31 18:51:06Z njl $
1# $FreeBSD: head/sys/modules/cpufreq/Makefile 144630 2005-04-04 15:51:13Z njl $
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
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"
11.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
12.PATH: ${.CURDIR}/../../i386/cpufreq
13CFLAGS+= -I${.CURDIR}/../../contrib/dev/acpica
14
15SRCS+= acpi_if.h opt_acpi.h
12SRCS+= est.c p4tcc.c powernow.c
13.endif
14
16SRCS+= est.c p4tcc.c powernow.c
17.endif
18
15.if ${MACHINE} == "amd64"
16.PATH: ${.CURDIR}/../../i386/cpufreq
17SRCS+= powernow.c
18.endif
19
20.include <bsd.kmod.mk>
19.include <bsd.kmod.mk>