blob: 55cfd8837c4637c8d579bbe023d281cc11c7c82a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env python
bld.SAMBA3_SUBSYSTEM('notifyd',
source='notifyd.c',
deps='util_tdb TDB_LIB messages_util')
bld.SAMBA3_BINARY('notifyd-tests',
source='tests.c',
install=False,
deps='''
smbconf
''')
bld.SAMBA3_BINARY('notifydd',
source='notifydd.c',
install=False,
deps='''notifyd
smbconf
''')
|