s4: Drop duplicate 'lib' prefix for private libraries.
[kai/samba.git] / source4 / ntvfs / sysdep / wscript_build
1 #!/usr/bin/env python
2
3 bld.SAMBA_MODULE('sys_notify_inotify',
4                  source='inotify.c',
5                  subsystem='sys_notify',
6                  init_function='sys_notify_inotify_init',
7                  deps='events',
8                  enabled = bld.CONFIG_SET('HAVE_LINUX_INOTIFY')
9                  )
10
11
12 bld.SAMBA_SUBSYSTEM('sys_notify',
13                     source='sys_notify.c',
14                     deps='talloc'
15                     )
16
17
18 bld.SAMBA_MODULE('sys_lease_linux',
19                  source='sys_lease_linux.c',
20                  deps='tevent',
21                  subsystem='sys_lease',
22                  init_function='sys_lease_linux_init',
23                  enabled = bld.CONFIG_SET('HAVE_F_SETLEASE_DECL')
24                  )
25
26
27 bld.SAMBA_SUBSYSTEM('sys_lease',
28                     source='sys_lease.c',
29                     deps='talloc'
30                     )
31