]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/mem/Makefile
This commit was generated by cvs2svn to compensate for changes in r167617,
[FreeBSD/FreeBSD.git] / sys / modules / mem / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../dev/mem
4 .PATH: ${.CURDIR}/../../${MACHINE}/${MACHINE}
5 .PATH: ${.CURDIR}/../../${MACHINE_ARCH}/${MACHINE_ARCH}
6
7 KMOD=   mem
8 SRCS=   memdev.c mem.c
9 .if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
10 SRCS+=  memutil.c
11 .endif
12 .if ${MACHINE_ARCH} == "i386"
13 SRCS+=  i686_mem.c k6_mem.c
14 .endif
15 .if ${MACHINE_ARCH} == "amd64"
16 SRCS+=  amd64_mem.c
17 .endif
18 SRCS+=  bus_if.h device_if.h
19
20 .include <bsd.kmod.mk>