From c54881b2e1e102beeec2b76e64654c514d7a93d4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 24 Sep 2010 11:12:39 -0700 Subject: s3-waf: add wscript_build to s3 librpc dir for NDR_ subsystems. Guenther --- source3/librpc/wscript_build | 31 +++++++++++++++++++++++++++++++ source3/wscript_build | 1 + 2 files changed, 32 insertions(+) create mode 100644 source3/librpc/wscript_build (limited to 'source3') 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') -- cgit