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