mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
24 lines
499 B
Makefile
24 lines
499 B
Makefile
.PATH: ${SRCTOP}/sys/dev/cpufreq \
|
|
${SRCTOP}/sys/${MACHINE_CPUARCH}/cpufreq
|
|
|
|
KMOD= cpufreq
|
|
SRCS= ichss.c
|
|
SRCS+= bus_if.h cpufreq_if.h device_if.h pci_if.h
|
|
|
|
.if ${MACHINE} == "i386" || ${MACHINE} == "amd64"
|
|
.PATH: ${SRCTOP}/sys/x86/cpufreq
|
|
|
|
SRCS+= acpi_if.h opt_acpi.h
|
|
SRCS+= est.c hwpstate_amd.c p4tcc.c powernow.c hwpstate_intel.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "i386"
|
|
SRCS+= smist.c
|
|
.endif
|
|
|
|
.if ${MACHINE} == "powerpc"
|
|
.PATH: ${SRCTOP}/sys/powerpc/cpufreq
|
|
SRCS+= dfs.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|