2012-05-30 10:08:11 -06:00
|
|
|
Import('*')
|
|
|
|
|
|
|
|
|
|
from sys import executable as python_cmd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Generate the GL API headers that are used by various parts of the
|
|
|
|
|
# Mesa and GLX tree. Other .c and .h files are generated elsewhere
|
|
|
|
|
# if they're only used in one place.
|
|
|
|
|
|
2013-01-21 17:47:51 +00:00
|
|
|
env.CodeGenerate(
|
|
|
|
|
target = '../../../mesa/main/dispatch.h',
|
|
|
|
|
script = 'gl_table.py',
|
|
|
|
|
source = 'gl_and_es_API.xml',
|
2012-05-30 10:08:11 -06:00
|
|
|
command = python_cmd + ' $SCRIPT -m remap_table -f $SOURCE > $TARGET',
|
|
|
|
|
)
|
|
|
|
|
|
2013-01-21 17:47:51 +00:00
|
|
|
env.CodeGenerate(
|
|
|
|
|
target = '../../../mapi/glapi/glapitable.h',
|
|
|
|
|
script = 'gl_table.py',
|
|
|
|
|
source = 'gl_and_es_API.xml',
|
2012-06-01 08:27:21 -06:00
|
|
|
command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
|
|
|
|
|
)
|
|
|
|
|
|
2013-01-21 17:47:51 +00:00
|
|
|
env.CodeGenerate(
|
|
|
|
|
target = '../../../mapi/glapi/glapitemp.h',
|
|
|
|
|
script = 'gl_apitemp.py',
|
|
|
|
|
source = 'gl_and_es_API.xml',
|
2012-05-30 10:08:11 -06:00
|
|
|
command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
|
|
|
|
|
)
|
|
|
|
|
|
2013-01-21 17:47:51 +00:00
|
|
|
env.CodeGenerate(
|
|
|
|
|
target = '../../../mapi/glapi/glprocs.h',
|
|
|
|
|
script = 'gl_procs.py',
|
|
|
|
|
source = 'gl_and_es_API.xml',
|
2012-05-30 10:08:11 -06:00
|
|
|
command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
|
|
|
|
|
)
|
|
|
|
|
|
2013-01-21 17:47:51 +00:00
|
|
|
env.CodeGenerate(
|
|
|
|
|
target = '../../../mesa/main/remap_helper.h',
|
|
|
|
|
script = 'remap_helper.py',
|
|
|
|
|
source = 'gl_and_es_API.xml',
|
2012-05-30 10:08:11 -06:00
|
|
|
command = python_cmd + ' $SCRIPT -f $SOURCE > $TARGET'
|
|
|
|
|
)
|