| Home | Trees | Indices | Help |
|
|---|
|
|
1 #!/usr/bin/env python
2 # encoding: utf-8
3 # Sebastian Schlingmann, 2008
4 # Thomas Nagy, 2008 (ita)
5
6 import TaskGen
7
8 TaskGen.declare_chain(
9 name = 'luac',
10 action = '${LUAC} -s -o ${TGT} ${SRC}',
11 ext_in = '.lua',
12 ext_out = '.luac',
13 reentrant = 0,
14 install = 'LUADIR', # env variable
15 )
16
21
23 luac = conf.find_program('luac', var='LUAC')
24 if not luac: conf.fatal('cannot find the compiler "luac"')
25
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Sun Aug 3 22:22:52 2008 | http://epydoc.sourceforge.net |