1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

s3-waf: add wscript_build to s3 librpc dir for NDR_ subsystems.

Guenther
This commit is contained in:
Günther Deschner 2010-09-24 11:12:39 -07:00
parent c9b19d9b69
commit c54881b2e1
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,31 @@
#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM('NDR_LIBNETAPI',
source='gen_ndr/ndr_libnetapi.c',
public_deps='LIBNDR'
)
bld.SAMBA_SUBSYSTEM('NDR_MESSAGING',
source='gen_ndr/ndr_messaging.c',
public_deps='LIBNDR'
)
bld.SAMBA_SUBSYSTEM('NDR_NOTIFY',
source='gen_ndr/ndr_notify.c',
public_deps='LIBNDR'
)
bld.SAMBA_SUBSYSTEM('NDR_PREG',
source='gen_ndr/ndr_preg.c ndr/ndr_preg.c',
public_deps='LIBNDR'
)
bld.SAMBA_SUBSYSTEM('NDR_SECRETS',
source='gen_ndr/ndr_secrets.c',
public_deps='LIBNDR'
)
bld.SAMBA_SUBSYSTEM('NDR_WBINT',
source='gen_ndr/ndr_wbint.c',
public_deps='LIBNDR'
)

View File

@ -1161,6 +1161,7 @@ bld.RECURSE('build')
bld.RECURSE('../librpc')
bld.RECURSE('librpc/idl')
bld.RECURSE('librpc')
bld.SAMBA_MKVERSION('include/version.h')