diff options
author | Günther Deschner <gd@samba.org> | 2010-09-24 11:12:39 -0700 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-24 11:12:39 -0700 |
commit | c54881b2e1e102beeec2b76e64654c514d7a93d4 (patch) | |
tree | 4615fc8a5e3c4cf5ded709c0df967b6585c86d4a /source3/librpc/wscript_build | |
parent | c9b19d9b696d8528e59eade89695c60a40461ec9 (diff) | |
download | samba-c54881b2e1e102beeec2b76e64654c514d7a93d4.tar.gz samba-c54881b2e1e102beeec2b76e64654c514d7a93d4.tar.bz2 samba-c54881b2e1e102beeec2b76e64654c514d7a93d4.zip |
s3-waf: add wscript_build to s3 librpc dir for NDR_ subsystems.
Guenther
Diffstat (limited to 'source3/librpc/wscript_build')
-rw-r--r-- | source3/librpc/wscript_build | 31 |
1 files changed, 31 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' + ) |