1 # $NetBSD: Makefile.rumpvfs,v 1.5 2009/01/13 11:37:16 pooka Exp $ 2 # 3 4 .include "${RUMPTOP}/Makefile.rump" 5 6 LIB= rumpvfs 7 8 .PATH: ${RUMPTOP}/librump/rumpvfs \ 9 ${RUMPTOP}/../kern ${RUMPTOP}/../lib/libkern \ 10 ${RUMPTOP}/../miscfs/genfs ${RUMPTOP}/../miscfs/syncfs \ 11 ${RUMPTOP}/../miscfs/specfs 12 13 # 14 # Source modules, first the ones specifically implemented for librump. 15 # 16 SRCS= genfs_io.c rump_vfs.c rumpblk.c rumpfs.c vm_vfs.c 17 18 SRCS+= fstrans_stub.c vfsops_stub.c 19 20 # sys/kern vfs 21 SRCS+= vfs_bio.c vfs_cache.c vfs_cwd.c vfs_dirhash.c vfs_getcwd.c \ 22 vfs_hooks.c vfs_init.c vfs_lockf.c vfs_lookup.c vfs_subr.c \ 23 vfs_syscalls.c vfs_vnops.c vfs_wapbl.c vfs_xattr.c 24 25 # sys/miscfs 26 SRCS+= genfs_vfsops.c genfs_vnops.c sync_subr.c spec_vnops.c 27 28 # sys/kern bufq 29 SRCS+= subr_bufq.c bufq_disksort.c bufq_fcfs.c bufq_priocscan.c \ 30 bufq_readprio.c 31 32 SRCS+= rumpvnode_if.c 33 34 # no shlib_version because this is automatically in sync with lib/librump 35 SHLIB_MAJOR= 0 36 SHLIB_MINOR= 0 37 38 CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern 39 CFLAGS+= -Wno-pointer-sign 40 41 .include <bsd.lib.mk> 42 .include <bsd.klinks.mk> 43