1 # $NetBSD: Makefile,v 1.9 2009/05/02 01:15:53 pooka Exp $ 2 # 3 4 .PATH: ${.CURDIR}/../../../../ufs/ffs ${.CURDIR}/../../../../ufs/ufs 5 6 LIB= rumpfs_ffs 7 8 SRCS= ffs_alloc.c ffs_appleufs.c ffs_balloc.c ffs_bswap.c ffs_inode.c \ 9 ffs_snapshot.c ffs_subr.c ffs_tables.c ffs_vfsops.c ffs_vnops.c \ 10 ffs_wapbl.c 11 12 SRCS+= ufs_bmap.c ufs_dirhash.c ufs_ihash.c ufs_inode.c ufs_lookup.c \ 13 ufs_vfsops.c ufs_vnops.c ufs_wapbl.c 14 15 CPPFLAGS+= -DFFS_EI -DWAPBL -DAPPLE_UFS 16 CPPFLAGS+= -DUFS_DIRHASH -DWAPBL -DAPPLE_UFS 17 CFLAGS+= -Wno-pointer-sign 18 19 .include <bsd.lib.mk> 20 .include <bsd.klinks.mk> 21