Remove SENFSCons.StandardTargets and SENFSCons.GlobalTargets
[senf.git] / Utils / Logger / SConscript
index bd53fae..a3803c6 100644 (file)
@@ -5,13 +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','INet.hh') and not f.endswith('.test.hh') ])
-sources = SENFSCons.GlobSources()
-objects = SENFSCons.Objects( env, sources = sources )
+                               if ( f not in ('all_includes.hh','Logger.hh','SenfLog.hh')
+                                    and not f.endswith('.test.hh') ) ])
 
-SENFSCons.Doxygen(env)
+sources, includes = SENFSCons.Glob(env)
 
-Return('objects')
+SENFSCons.Lib(env, sources)
+SENFSCons.Doxygen(env)
+SENFSCons.InstallIncludeFiles(env, includes)