# $NetBSD: Makefile.rumpvfs,v 1.9 2009/06/10 20:50:51 pooka Exp $ # .include "${RUMPTOP}/Makefile.rump" LIB= rumpvfs .PATH: ${RUMPTOP}/librump/rumpvfs \ ${RUMPTOP}/../kern \ ${RUMPTOP}/../miscfs/genfs ${RUMPTOP}/../miscfs/syncfs \ ${RUMPTOP}/../miscfs/specfs ${RUMPTOP}/../miscfs/deadfs \ ${RUMPTOP}/../compat/common # # Source modules, first the ones specifically implemented for librump. # SRCS= genfs_io.c rump_vfs.c rumpblk.c rumpfs.c vm_vfs.c SRCS+= fstrans_stub.c vfsops_stub.c # sys/kern vfs SRCS+= vfs_bio.c vfs_cache.c vfs_cwd.c vfs_dirhash.c vfs_getcwd.c \ vfs_hooks.c vfs_init.c vfs_lockf.c vfs_lookup.c vfs_subr.c \ vfs_syscalls.c vfs_vnops.c vfs_wapbl.c vfs_xattr.c # sys/miscfs/syncfs SRCS+= sync_subr.c sync_vnops.c # sys/miscfs/deadfs SRCS+= dead_vnops.c # sys/miscfs SRCS+= genfs_vfsops.c genfs_vnops.c spec_vnops.c # sys/kern bufq SRCS+= subr_bufq.c bufq_disksort.c bufq_fcfs.c bufq_priocscan.c \ bufq_readprio.c # compat syscalls SRCS+= vfs_syscalls_50.c compat.c SRCS+= rumpvnode_if.c # no shlib_version because this is automatically in sync with lib/librump SHLIB_MAJOR= 0 SHLIB_MINOR= 0 CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern CFLAGS+= -Wno-pointer-sign .include .include