blob: a69a637a839766cdbd4b664d7f27c3ed80bacebf (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*-python-*-
Import ('env', 'install', 'src_glob')
sources = src_glob ('*.py')
scripts = map (env.AT_COPY, sources)
install (scripts, env['bindir'])
po = env.Command ('lilypond.po', sources, env['pocommand'])
env.Alias ('po-update', po)
|