summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-08-25 15:33:11 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-08-25 15:33:11 +0000
commit0e9929ac1007fe72d54e984be6a255b7ed26f5fb (patch)
tree4e385a6cb2f847ab485032f3368b98e28355f88c /src
parentcd248854290579b621f9f6450687e8f9ef653b49 (diff)
Makefile for python-generated files (Ian Romanick)
Diffstat (limited to 'src')
-rw-r--r--src/mesa/glapi/Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/mesa/glapi/Makefile b/src/mesa/glapi/Makefile
new file mode 100644
index 0000000000..11b33fb86e
--- /dev/null
+++ b/src/mesa/glapi/Makefile
@@ -0,0 +1,38 @@
+# This file isn't used during a normal compilation since we don't want to
+# require Python in order to compile Mesa.
+# Instead, when the Mesa developers update/change the API interface it's
+# up to him/her to re-run this makefile and check in the newly generated files.
+
+
+OUTPUTS = glprocs.h glapitemp.h glapioffsets.h glapitable.h glapi_x86.S
+
+COMMON = gl_XML.pyc license.pyc gl_API.xml
+
+all: $(OUTPUTS)
+
+gl_XML.pyc: gl_XML.py
+ rm -f gl_XML.pyc > /dev/null
+ python2 -t -O gl_XML.py
+
+license.pyc: license.py
+ rm -f license.pyc > /dev/null
+ python2 -t -O license.py
+
+glprocs.h: $(COMMON) gl_procs.py
+ python2 -t gl_procs.py > glprocs.h
+
+glapitemp.h: $(COMMON) gl_apitemp.py
+ python2 -t gl_apitemp.py > glapitemp.h
+
+glapioffsets.h: $(COMMON) gl_offsets.py
+ python2 -t gl_offsets.py > glapioffsets.h
+
+glapitable.h: $(COMMON) gl_table.py
+ python2 -t gl_table.py > glapitable.h
+
+glapi_x86.S: $(COMMON) gl_x86_asm.py
+ python2 -t gl_x86_asm.py > glapi_x86.S
+
+clean:
+ rm -f *~ *.pyc
+ rm -f $(OUTPUTS)