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 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 source3/librpc/wscript_build (limited to 'source3/librpc') 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' + ) -- cgit