diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-10-02 22:48:59 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-10-02 22:48:59 +0000 |
commit | 58d84409a3cb11fe49cc8517bb2e1ce1302b8570 (patch) | |
tree | 78c9feb0946f474d48ce3035ca1ca342930bb16f /src | |
parent | 788ff5b5c7eca4f9ca689a4224a2cf944ee60edc (diff) |
put glapi_x86.S into the x86/ directory
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/glapi/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/glapi/Makefile b/src/mesa/glapi/Makefile index 11b33fb86e..67a1d09160 100644 --- a/src/mesa/glapi/Makefile +++ b/src/mesa/glapi/Makefile @@ -4,7 +4,7 @@ # 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 +OUTPUTS = glprocs.h glapitemp.h glapioffsets.h glapitable.h ../x86/glapi_x86.S COMMON = gl_XML.pyc license.pyc gl_API.xml @@ -30,8 +30,8 @@ glapioffsets.h: $(COMMON) gl_offsets.py 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 +../x86/glapi_x86.S: $(COMMON) gl_x86_asm.py + python2 -t gl_x86_asm.py > ../x86/glapi_x86.S clean: rm -f *~ *.pyc |