diff options
author | Brian Paul <[email protected]> | 2005-07-01 01:27:00 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-07-01 01:27:00 +0000 |
commit | f4f1c2959767a65cd592a978e238a039c15b9635 (patch) | |
tree | 895fafc878afa2b0f980b914df49c28578f50327 /src | |
parent | bb5c84fcbc22b4fef28cf4589d6410eb3c35a496 (diff) |
Move the PYTHON2 and PYTHON_FLAGS assignments to configs/current, and
include $(TOP)/configs/current in glapi/Makefile so those vars can be
easily overridden by any system config, if needed.
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 9f95349c9eb..db3d0ca3901 100644 --- a/src/mesa/glapi/Makefile +++ b/src/mesa/glapi/Makefile @@ -4,6 +4,9 @@ # up to him/her to re-run this makefile and check in the newly generated files. +TOP = ../../.. +include $(TOP)/configs/current + OUTPUTS = glprocs.h glapitemp.h glapioffsets.h glapitable.h \ ../main/enums.c \ ../x86/glapi_x86.S \ @@ -17,9 +20,6 @@ OUTPUTS = glprocs.h glapitemp.h glapioffsets.h glapitable.h \ COMMON = gl_XML.py license.py gl_API.xml typeexpr.py COMMON_GLX = $(COMMON) glX_XML.py glX_proto_common.py -PYTHON2 = python -PYTHON_FLAGS = -t -O -O - all: $(OUTPUTS) glprocs.h: $(COMMON) gl_procs.py |