1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source3/libgpo/gpext/wscript_build
Michael Adam 9f15535821 build: get rid of source variables and vars=locals() in source3/libgpo/gpext/wscript_build
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Günther Deschner <gd@samba.org>
2013-09-24 23:00:35 +02:00

28 lines
1.1 KiB
Python

#!/usr/bin/env python
bld.SAMBA3_SUBSYSTEM('gpext',
source='../../../libgpo/gpext/gpext.c',
deps='samba-util samba3core gpo')
bld.SAMBA3_MODULE('gpext_registry',
subsystem='gpext',
source='registry.c',
deps='NDR_PREG',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('gpext_registry'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('gpext_registry'))
bld.SAMBA3_MODULE('gpext_scripts',
subsystem='gpext',
source='scripts.c',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('gpext_scripts'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('gpext_scripts'))
bld.SAMBA3_MODULE('gpext_security',
subsystem='gpext',
source='security.c',
init_function='',
internal_module=bld.SAMBA3_IS_STATIC_MODULE('gpext_security'),
enabled=bld.SAMBA3_IS_ENABLED_MODULE('gpext_security'))