From 3d4ea18d4dd9031adc16348c16595d6c216b2d84 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 24 Sep 2005 16:23:41 +0000 Subject: r10478: More work on proto headers; we now generate a couple of smaller ones that are then included by include/proto.h (This used to be commit 703ffbaaaca11f3d8781cfe9e7542fcaa626d991) --- source4/param/SConscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/param') diff --git a/source4/param/SConscript b/source4/param/SConscript index 4dfca40d4a..2b8eb89b30 100644 --- a/source4/param/SConscript +++ b/source4/param/SConscript @@ -2,7 +2,9 @@ Import('hostenv') # tastes like -*- python -*- Import('dynconfig basic') -param = hostenv.StaticLibrary('loadparm',['loadparm.c','params.c',dynconfig,basic]) +param_files = ['loadparm.c','params.c'] +param = hostenv.StaticLibrary('loadparm',[param_files,dynconfig,basic]) +hostenv.proto_headers += hostenv.CProtoHeader('proto.h', param_files) Export('param') generic = hostenv.StaticLibrary('generic',['generic.c']) Export('generic') -- cgit