X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Ftopdocs%2FSConscript;h=7ef165cd93241e5eddfa272af96f7606082b4a7b;hb=543171165412bc915d8ea1f308d070c74924b2f1;hp=26c2dc68df1cc24b2a519456288e57288067509a;hpb=1a16035eb63fca3df67718042a446e6546507ce9;p=lilypond.git diff --git a/Documentation/topdocs/SConscript b/Documentation/topdocs/SConscript index 26c2dc68df..7ef165cd93 100644 --- a/Documentation/topdocs/SConscript +++ b/Documentation/topdocs/SConscript @@ -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'])