]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/topdocs/SConscript
Clean up buildscripts
[lilypond.git] / Documentation / topdocs / SConscript
index 26c2dc68df1cc24b2a519456288e57288067509a..7ef165cd93241e5eddfa272af96f7606082b4a7b 100644 (file)
@@ -1,8 +1,14 @@
 # -*-python-*-
 
-Import ('env')
-telys = env['glob'] (env, '*.tely')
-texis = env['glob'] (env, '*.texi') + map (env.TEXI, telys)
-htmls = map (env.HTML, texis)
-env.Alias ('doc', htmls)
+Import ('env', 'src_glob', 'install')
 
+tely = src_glob ('*.tely')
+texi = src_glob ('*.texi') + map (env.TEXI, tely)
+
+txt = map (env.TXT, texi)
+html = map (env.HTML, texi)
+
+env.Alias ('doc', txt)
+env.Alias ('doc', html)
+
+install (txt, env['sharedir_doc_package'])