8 lines
217 B
Bash
Executable File
8 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
for xml in gl egl; do
|
|
PYTHONDONTWRITEBYTECODE=1 python src/gen_dispatch.py \
|
|
--srcdir $PWD/prebuilt-intermediates/src \
|
|
--includedir $PWD/prebuilt-intermediates/include/epoxy \
|
|
registry/$xml.xml
|
|
done
|