51e79affa3
There is no reason to duplicate this file when it can be trivially shared (just exposing one section previously under #ifdef _KERNEL). Reviewed by: imp, cem MFC with: r351273 Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D21346
14 lines
314 B
Makefile
14 lines
314 B
Makefile
# $FreeBSD$
|
|
#
|
|
|
|
MSDOS= ${SRCTOP}/sys/fs/msdosfs
|
|
MSDOS_NEWFS= ${SRCTOP}/sbin/newfs_msdos
|
|
|
|
.PATH: ${SRCDIR}/msdos ${MSDOS} ${MSDOS_NEWFS}
|
|
|
|
CFLAGS+= -DMAKEFS -I${MSDOS} -I${MSDOS_NEWFS}
|
|
|
|
SRCS+= mkfs_msdos.c
|
|
SRCS+= msdosfs_conv.c msdosfs_denode.c msdosfs_fat.c msdosfs_lookup.c
|
|
SRCS+= msdosfs_vnops.c msdosfs_vfsops.c
|