2005-04-30 18:04:55 +00:00
|
|
|
target = 'Modern UI'
|
|
|
|
|
|
|
|
docs = Split("""
|
|
|
|
Changelog.txt
|
|
|
|
License.txt
|
|
|
|
Readme.html
|
|
|
|
""")
|
|
|
|
|
|
|
|
doc_images = Split("""
|
|
|
|
closed.gif
|
|
|
|
header.gif
|
|
|
|
open.gif
|
|
|
|
screen1.png
|
|
|
|
screen2.png
|
|
|
|
""")
|
|
|
|
|
|
|
|
contribs = Split("""
|
|
|
|
ioSpecial.ini
|
|
|
|
System.nsh
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
|
|
|
Import('defenv')
|
|
|
|
|
|
|
|
def join(prefix, list):
|
|
|
|
return map(lambda x: '%s/%s' % (prefix, x), list)
|
|
|
|
|
2006-01-21 09:54:23 +00:00
|
|
|
defenv.DistributeDocs(docs, path=target)
|
|
|
|
path = 'images'
|
|
|
|
defenv.DistributeDocs(join(path,doc_images), path='%s/%s'%(target,path))
|
|
|
|
defenv.DistributeContrib(contribs, path=target)
|