4b547324c0
Some files keep the SUN4V tags as a code reference, for the future, if any rewamped sun4v support wants to be added again. Reviewed by: marius Tested by: sbruno Approved by: re
18 lines
374 B
Makefile
18 lines
374 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/mem
|
|
.PATH: ${.CURDIR}/../../${MACHINE}/${MACHINE}
|
|
.PATH: ${.CURDIR}/../../${MACHINE_CPUARCH}/${MACHINE_CPUARCH}
|
|
|
|
KMOD= mem
|
|
SRCS= mem.c memdev.c memutil.c
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
SRCS+= i686_mem.c k6_mem.c
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SRCS+= amd64_mem.c
|
|
.endif
|
|
SRCS+= bus_if.h device_if.h
|
|
|
|
.include <bsd.kmod.mk>
|