diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/librpc/wscript_build | 31 | ||||
-rw-r--r-- | source3/wscript_build | 1 |
2 files changed, 32 insertions, 0 deletions
diff --git a/source3/librpc/wscript_build b/source3/librpc/wscript_build new file mode 100644 index 0000000000..907d92f9d5 --- /dev/null +++ b/source3/librpc/wscript_build @@ -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' + ) diff --git a/source3/wscript_build b/source3/wscript_build index 98b609b212..f60b95d573 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -1161,6 +1161,7 @@ bld.RECURSE('build') bld.RECURSE('../librpc') bld.RECURSE('librpc/idl') +bld.RECURSE('librpc') bld.SAMBA_MKVERSION('include/version.h') |