# -*-python-*-

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'])
