1 # $NetBSD: Makefile,v 1.5 2022/01/06 15:08:56 pgoyette Exp $ 2 3 .include "../Makefile.inc" 4 5 KMOD= ufs 6 7 CPPFLAGS+= -DFFS_EI -DWAPBL -DAPPLE_UFS -DQUOTA -DQUOTA2 8 CPPFLAGS+= -DUFS_EXTATTR -DUFS_ACL 9 CPPFLAGS+= -DUFS_DIRHASH # disabled - suspected of corrupting memory 10 11 CWARNFLAGS.clang= -Wno-conversion 12 13 .PATH: ${S}/ufs/ufs 14 SRCS= ufs_acl.c ufs_bmap.c ufs_dirhash.c ufs_extattr.c ufs_inode.c \ 15 ufs_lookup.c ufs_quota.c ufs_quota1.c ufs_quota2.c ufs_rename.c \ 16 ufs_vfsops.c ufs_vnops.c quota1_subr.c quota2_subr.c 17 18 WARNS= 3 19 20 .include <bsd.kmodule.mk> 21