mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
2fea643112
Compile sys/dev/mem/memutil.c for all supported platforms and remove now unnecessary dev_mem_md_init(). Consistently define mem_range_softc from mem.c for all platforms. Add missing #include guards for machine/memdev.h and sys/memrange.h. Clean up some nearby style(9) nits. MFC after: 1 month
32 lines
628 B
Makefile
32 lines
628 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
|
|
|
|
.if ${MACHINE} == "sun4v"
|
|
SRCS+= opt_global.h
|
|
|
|
.if defined(KERNBUILDDIR)
|
|
MKDEP= -include ${KERNBUILDDIR}/opt_global.h
|
|
.else
|
|
CFLAGS+= -include opt_global.h
|
|
MKDEP= -include opt_global.h
|
|
|
|
opt_global.h:
|
|
echo "#define SUN4V 1" > ${.TARGET}
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|