X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FSConscript;h=ef0872cfc8296579c846cc8a393366bcac9787e6;hb=b1f9349b1f3521d58cbef52ead0f2e5303a58c9e;hp=81cb37c6bbe7c49d98776743ebe3314dcde2a561;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Utils/SConscript b/Utils/SConscript index 81cb37c..ef0872c 100644 --- a/Utils/SConscript +++ b/Utils/SConscript @@ -1,7 +1,15 @@ +# -*- python -*- + Import('env') -import SatSCons +import SENFSCons, glob, os.path ########################################################################### -SatSCons.StandardTargets(env) -SatSCons.Lib(env, 'Utils', SatSCons.GlobSources()) +sources, includes = SENFSCons.Glob(env, subdirs=[ 'impl' ]) + +SENFSCons.Lib(env, sources) +SENFSCons.Doxygen(env) + +env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes) + +SConscript(glob.glob("*/SConscript"))