Missing file.

git-svn-id: svn://localhost/ardour2/branches/3.0@11041 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-12-21 00:58:12 +00:00
parent e62e94b63c
commit e0e2d2a061

23
manual/wscript Normal file
View File

@ -0,0 +1,23 @@
#!/usr/bin/python
import os
top = '.'
out = 'build'
def configure(conf):
pass
def build(bld):
subst_dict = {}
subst_dict['ARDOUR_VERSION'] = bld.env['VERSION']
obj = bld(features = 'subst')
obj.name = 'manual'
obj.source = [ 'xml/entities.ent.in' ]
obj.target = [ 'ent/entities.ent' ]
obj.dict = subst_dict
def options(opt):
pass