s4-waf: mark the wscript files as python so vim/emacs knows how to highlight them
[sfrench/samba-autobuild/.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='LIBEVENTS',
8                  enabled = bld.CONFIG_SET('HAVE_LINUX_INOTIFY')
9                  )
10
11
12 bld.SAMBA_SUBSYSTEM('sys_notify',
13                     source='sys_notify.c'
14                     )
15
16
17 bld.SAMBA_MODULE('sys_lease_linux',
18                  source='sys_lease_linux.c',
19                  deps='tevent',
20                  subsystem='sys_lease',
21                  init_function='sys_lease_linux_init',
22                  enabled = bld.CONFIG_SET('HAVE_F_SETLEASE_DECL')
23                  )
24
25
26 bld.SAMBA_SUBSYSTEM('sys_lease',
27                     source='sys_lease.c'
28                     )
29