summaryrefslogtreecommitdiff
path: root/src/mesa/es/Makefile
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-11-20 18:19:49 +0800
committerBrian Paul <brianp@vmware.com>2010-01-04 14:15:15 -0700
commit8264a6a8a6486562a86bb0da3f631c298edbd303 (patch)
treec30a60262d9950fa5b3dbd5ffbb7e3b04f3f9b5f /src/mesa/es/Makefile
parent0c1a7bbe0d0c6727a432890164032188787e7e26 (diff)
mesa/es: Switch to APIspec.xml.
Update Makefile and ES generator to use APIspec.xml. Remove APIspec.txt and related files. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'src/mesa/es/Makefile')
-rw-r--r--src/mesa/es/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/es/Makefile b/src/mesa/es/Makefile
index 8cf2eaccab..6a4756c1b5 100644
--- a/src/mesa/es/Makefile
+++ b/src/mesa/es/Makefile
@@ -87,11 +87,11 @@ GENERATED_SOURCES := \
main/get_es1.c \
main/get_es2.c
-main/api_exec_es1.c: main/APIspec.txt main/es_generator.py main/apiutil.py main/es1_special
- $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.txt -V GLES1.1 > $@
+main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
+ $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES1.1 > $@
-main/api_exec_es2.c: main/APIspec.txt main/es_generator.py main/apiutil.py main/es2_special
- $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.txt -V GLES2.0 > $@
+main/api_exec_es2.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
+ $(PYTHON2) $(PYTHON_FLAGS) main/es_generator.py -S main/APIspec.xml -V GLES2.0 > $@
main/get_es1.c: main/get_gen.py
$(PYTHON2) $(PYTHON_FLAGS) $< 1 > $@