
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4000 212acab6-be3b-0410-9dea-997c60f758d6
26 lines
275 B
Python
26 lines
275 B
Python
target = 'halibut'
|
|
|
|
files = Split("""
|
|
biblio.c
|
|
bk_xhtml.c
|
|
contents.c
|
|
error.c
|
|
help.c
|
|
index.c
|
|
input.c
|
|
keywords.c
|
|
licence.c
|
|
main.c
|
|
malloc.c
|
|
misc.c
|
|
style.c
|
|
tree234.c
|
|
ustring.c
|
|
version.c
|
|
""")
|
|
|
|
Import('env')
|
|
|
|
halibut = env.Program(target, files)
|
|
|
|
Return('halibut')
|