summaryrefslogtreecommitdiff
path: root/source4/param/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-06-20 15:48:12 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-06-21 04:41:54 +0200
commit233a6223b2ff84dcd965d0f295fbe88ba50ce5c5 (patch)
tree3526bdacdf595fc2dcde8bd9cae73ac69e4eecbf /source4/param/wscript_build
parent79b1a1092dbbb45bb8839c71e48479d1c6037b48 (diff)
downloadsamba-233a6223b2ff84dcd965d0f295fbe88ba50ce5c5.tar.gz
samba-233a6223b2ff84dcd965d0f295fbe88ba50ce5c5.tar.bz2
samba-233a6223b2ff84dcd965d0f295fbe88ba50ce5c5.zip
s4-param Autogenerate the loadparm_globals and loadparm_service tables
This makes it much easier and less error prone to add new parameters as we merge the s3 and s4 loadparm systems. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Jun 21 04:41:54 CEST 2011 on sn-devel-104
Diffstat (limited to 'source4/param/wscript_build')
-rw-r--r--source4/param/wscript_build10
1 files changed, 10 insertions, 0 deletions
diff --git a/source4/param/wscript_build b/source4/param/wscript_build
index 98e838133e..da10565c6c 100644
--- a/source4/param/wscript_build
+++ b/source4/param/wscript_build
@@ -5,6 +5,16 @@ bld.SAMBA_GENERATOR('s3_param_h',
target='s3_param.h',
rule='${PERL} ${SRC[1].abspath(env)} ${SRC[0].abspath(env)} --file ${TGT}')
+bld.SAMBA_GENERATOR('param_local_h',
+ source= 'loadparm.c ../script/mkparamdefs.pl',
+ target='param_local.h',
+ rule='${PERL} ${SRC[1].abspath(env)} ${SRC[0].abspath(env)} --file ${TGT} --generate-scope=LOCAL')
+
+bld.SAMBA_GENERATOR('param_global_h',
+ source= 'loadparm.c ../script/mkparamdefs.pl',
+ target='param_global.h',
+ rule='${PERL} ${SRC[1].abspath(env)} ${SRC[0].abspath(env)} --file ${TGT} --generate-scope=GLOBAL')
+
bld.SAMBA_LIBRARY('samba-hostconfig',
source='loadparm.c generic.c util.c',
pc_files='samba-hostconfig.pc',