Remove SENFSCons.StandardTargets and SENFSCons.GlobalTargets
[senf.git] / Utils / SConscript
index 81cb37c..a39548a 100644 (file)
@@ -1,7 +1,14 @@
+# -*- 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)
+SENFSCons.InstallIncludeFiles(env, includes)
+
+SConscript(glob.glob("*/SConscript"))