Makefile revision 213383
1# $FreeBSD: head/sys/modules/mem/Makefile 213383 2010-10-03 16:02:53Z nwhitehorn $
2
3.PATH: ${.CURDIR}/../../dev/mem
4.PATH: ${.CURDIR}/../../${MACHINE}/${MACHINE}
5.PATH: ${.CURDIR}/../../${MACHINE_CPUARCH}/${MACHINE_CPUARCH}
6
7KMOD=	mem
8SRCS=	memdev.c mem.c
9.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} = "powerpc"
10SRCS+=	memutil.c
11.endif
12.if ${MACHINE_CPUARCH} == "i386"
13SRCS+=	i686_mem.c k6_mem.c
14.endif
15.if ${MACHINE_CPUARCH} == "amd64"
16SRCS+=	amd64_mem.c
17.endif
18SRCS+=	bus_if.h device_if.h
19
20.if ${MACHINE} == "sun4v"
21SRCS+=		opt_global.h
22
23.if defined(KERNBUILDDIR)
24MKDEP=		-include ${KERNBUILDDIR}/opt_global.h
25.else
26CFLAGS+=	-include opt_global.h
27MKDEP=		-include opt_global.h
28
29opt_global.h:
30	echo "#define SUN4V 1" > ${.TARGET}
31.endif
32.endif
33
34.include <bsd.kmod.mk>
35