Remove SENFSCons.StandardTargets and SENFSCons.GlobalTargets
[senf.git] / Utils / SConscript
index c679e5f..a39548a 100644 (file)
@@ -1,11 +1,14 @@
 # -*- python -*-
 
 Import('env')
-import SatSCons
+import SENFSCons, glob, os.path
 
 ###########################################################################
 
-sources = SatSCons.GlobSources()
-SatSCons.StandardTargets(env)
-SatSCons.Lib(env, 'Utils', sources)
-SatSCons.Doxygen(env)
+sources, includes = SENFSCons.Glob(env, subdirs=[ 'impl' ])
+
+SENFSCons.Lib(env, sources)
+SENFSCons.Doxygen(env)
+SENFSCons.InstallIncludeFiles(env, includes)
+
+SConscript(glob.glob("*/SConscript"))