Remove SENFSCons.StandardTargets and SENFSCons.GlobalTargets
[senf.git] / Utils / Logger / SConscript
index 6b3c30f..a3803c6 100644 (file)
@@ -5,16 +5,12 @@ import SENFSCons, glob
 
 ###########################################################################
 
-SENFSCons.StandardTargets(env)
-
 SENFSCons.AllIncludesHH(env, [ f for f in glob.glob("*.hh")
                                if ( f not in ('all_includes.hh','Logger.hh','SenfLog.hh')
                                     and not f.endswith('.test.hh') ) ])
-sources = SENFSCons.GlobSources()
-objects = SENFSCons.Objects( env, sources = sources, LIBS = [ 'Utils' ] )
 
-SENFSCons.InstallIncludeFiles(env, [ 'SenfLog.hh' ])
+sources, includes = SENFSCons.Glob(env)
 
+SENFSCons.Lib(env, sources)
 SENFSCons.Doxygen(env)
-
-Return('objects')
+SENFSCons.InstallIncludeFiles(env, includes)