Replace SENFSCons.InstallIncludeFiles with InstallSubdir builder calls
[senf.git] / Utils / Termlib / SConscript
index 7fe6526..5f77839 100644 (file)
@@ -7,8 +7,9 @@ import SENFSCons
 
 sources, includes = SENFSCons.Glob(env, exclude=[ 'telnetServer.cc'])
 
-SENFSCons.StandardTargets(env)
 SENFSCons.Lib(env, sources)
 SENFSCons.Doxygen(env)
-SENFSCons.InstallIncludeFiles(env, includes)
+
+env.InstallSubdir(target = '$INCLUDEINSTALLDIR', source = includes)
+
 SENFSCons.Binary(env, "telnetServer", ['telnetServer.cc'])