14 lines
280 B
Makefile
14 lines
280 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/mem
|
|
.PATH: ${.CURDIR}/../../${MACHINE_ARCH}/${MACHINE_ARCH}
|
|
|
|
KMOD= mem
|
|
SRCS= memdev.c mem.c
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
|
|
SRCS+= memutil.c
|
|
.endif
|
|
SRCS+= bus_if.h device_if.h vnode_if.h
|
|
|
|
.include <bsd.kmod.mk>
|