Home | History | Annotate | Line # | Download | only in rumpvfs
Makefile.rumpvfs revision 1.1
      1 #	$NetBSD: Makefile.rumpvfs,v 1.1 2008/11/19 14:10:49 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 
     12 #
     13 # Source modules, first the ones specifically implemented for librump.
     14 # 
     15 SRCS=	genfs_io.c rump_vfs.c rumpfs.c specfs.c vm_vfs.c
     16 
     17 SRCS+=	fstrans_stub.c vfsops_stub.c
     18 
     19 # sys/kern vfs
     20 SRCS+=	vfs_bio.c vfs_cache.c vfs_cwd.c vfs_dirhash.c vfs_getcwd.c	\
     21 	vfs_hooks.c vfs_init.c vfs_lookup.c vfs_subr.c vfs_syscalls.c	\
     22 	vfs_vnops.c vfs_wapbl.c
     23 
     24 # sys/miscfs
     25 SRCS+=	genfs_vfsops.c genfs_vnops.c sync_subr.c
     26 
     27 # sys/kern bufq
     28 SRCS+=	subr_bufq.c bufq_disksort.c bufq_fcfs.c bufq_priocscan.c	\
     29 	bufq_readprio.c
     30 
     31 SRCS+=	rumpvnode_if.c
     32 
     33 # no shlib_version because this is automatically in sync with lib/librump
     34 SHLIB_MAJOR=    0
     35 SHLIB_MINOR=    0
     36 
     37 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern/opt -DMAXUSERS=32
     38 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern
     39 CFLAGS+=	-Wno-pointer-sign
     40 
     41 .include <bsd.lib.mk>
     42 .include <bsd.klinks.mk>
     43