Deleted Added
full compact
Makefile (135870) Makefile (139398)
1# $FreeBSD: head/sys/modules/mem/Makefile 135870 2004-09-28 07:26:00Z markm $
1# $FreeBSD: head/sys/modules/mem/Makefile 139398 2004-12-29 08:44:30Z imp $
2
3.PATH: ${.CURDIR}/../../dev/mem
4.PATH: ${.CURDIR}/../../${MACHINE_ARCH}/${MACHINE_ARCH}
5
6KMOD= mem
7SRCS= memdev.c mem.c
8.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
9SRCS+= memutil.c
10.endif
11.if ${MACHINE_ARCH} == "i386"
12SRCS+= i686_mem.c k6_mem.c
13.endif
14.if ${MACHINE_ARCH} == "amd64"
15SRCS+= amd64_mem.c
16.endif
2
3.PATH: ${.CURDIR}/../../dev/mem
4.PATH: ${.CURDIR}/../../${MACHINE_ARCH}/${MACHINE_ARCH}
5
6KMOD= mem
7SRCS= memdev.c mem.c
8.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
9SRCS+= memutil.c
10.endif
11.if ${MACHINE_ARCH} == "i386"
12SRCS+= i686_mem.c k6_mem.c
13.endif
14.if ${MACHINE_ARCH} == "amd64"
15SRCS+= amd64_mem.c
16.endif
17SRCS+= bus_if.h device_if.h vnode_if.h
17SRCS+= bus_if.h device_if.h
18
19.include <bsd.kmod.mk>
18
19.include <bsd.kmod.mk>