]> git.lyx.org Git - lyx.git/blobdiff - development/scons/scons_utils.py
Rename files under src/tex2lyx
[lyx.git] / development / scons / scons_utils.py
index b04e219f21b55abd61481710c73da59829ded1d7..bb924cafc86d2c5248871278c0a04b4c020301f6 100644 (file)
@@ -102,6 +102,27 @@ def env_nsis(source, target, env, for_signature):
     return ret
 
 
+def env_toc(target, source, env):
+    '''Generate target from source files'''
+    # this is very tricky because we need to use installed lyx2lyx with 
+    # correct lyx2lyx_version.py
+    sys.path.append(env['LYX2LYX_DEST'])
+    sys.path.append(env.Dir('$TOP_SRCDIR/lib/doc').abspath)
+    import doc_toc
+    # build toc
+    doc_toc.build_toc(str(target[0]), [file.abspath for file in source])
+    
+    
+def env_cat(target, source, env):
+    '''Cat source > target. Avoid pipe to increase portability'''
+    output = open(env.File(target[0]).abspath, 'w')
+    for src in source:
+        input = open(env.File(src).abspath)
+        output.write(input.read())
+        input.close()
+    output.close()
+
+
 def createResFromIcon(env, icon_file, rc_file):
     ''' create a rc file with icon, and return res file (windows only) '''
     if os.name == 'nt':