Add 'unflatten' to doxygen/dot processing
[senf.git] / Utils / SConscript
index baa117a..e07dec0 100644 (file)
@@ -1,11 +1,15 @@
 # -*- python -*-
 
 Import('env')
-import SENFSCons
+import SENFSCons, glob, os.path
 
 ###########################################################################
 
-sources = SENFSCons.GlobSources()
+sources, includes = SENFSCons.Glob(env, subdirs=[ 'impl' ])
+
 SENFSCons.StandardTargets(env)
-SENFSCons.Lib(env, 'Utils', sources)
+SENFSCons.Lib(env, sources)
 SENFSCons.Doxygen(env)
+SENFSCons.InstallIncludeFiles(env, includes)
+
+SConscript(glob.glob("*/SConscript"))