diff options
Diffstat (limited to 'source4/ntvfs/SConscript')
-rw-r--r-- | source4/ntvfs/SConscript | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source4/ntvfs/SConscript b/source4/ntvfs/SConscript new file mode 100644 index 0000000000..16047eb4ae --- /dev/null +++ b/source4/ntvfs/SConscript @@ -0,0 +1,11 @@ +Import('hostenv') + +hostenv.StaticLibrary('ntvfs_cifs',['cifs/vfs_cifs.c']) +hostenv.StaticLibrary('ntvfs_simple',['simple/vfs_simple.c','simple/svfs_util.c']) +hostenv.StaticLibrary('ntvfs_print',['print/vfs_print.c']) +hostenv.StaticLibrary('ntvfs_ipc',['ipc/vfs_ipc.c','ipc/ipc_rap.c','ipc/rap_server.c']) +hostenv.StaticLibrary('ntvfs_nbench',['nbench/vfs_nbench.c']) +hostenv.StaticLibrary('ntvfs_common',['common/brlock.c','common/opendb.c','common/sidmap.c']) +hostenv.StaticLibrary('ntvfs',['ntvfs_base.c','ntvfs_generic.c','ntvfs_interface.c','ntvfs_util.c']) + +SConscript(dirs=['unixuid','posix'],exports='hostenv') |