56ca39961b
This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated.
15 lines
274 B
Makefile
15 lines
274 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../msdosfs
|
|
KMOD= msdos
|
|
SRCS= vnode_if.h \
|
|
msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c \
|
|
msdosfs_vfsops.c msdosfs_vnops.c
|
|
NOMAN=
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../conf/kmod.mk"
|