mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-12 15:50:31 +01:00
Tested-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-and-Tested-by: Andreas Boll <andreas.boll.dev@gmail.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# Helpers for glapi header generation
|
|
|
|
glapi_gen_common_deps := \
|
|
$(wildcard $(top_srcdir)/src/mapi/glapi/gen/*.xml) \
|
|
$(wildcard $(top_srcdir)/src/mapi/glapi/gen/*.py)
|
|
|
|
glapi_gen_mapi_script := $(top_srcdir)/src/mapi/mapi_abi.py
|
|
glapi_gen_mapi_deps := \
|
|
$(glapi_gen_mapi_script) \
|
|
$(glapi_gen_common_deps)
|
|
|
|
# $(1): path to an XML file
|
|
# $(2): name of the printer
|
|
define glapi_gen_mapi
|
|
@mkdir -p $(dir $@)
|
|
$(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(glapi_gen_mapi_script) \
|
|
--mode lib --printer $(2) $(1) > $@
|
|
endef
|
|
|
|
glapi_gen_dispatch_script := $(top_srcdir)/src/mapi/glapi/gen/gl_table.py
|
|
glapi_gen_dispatch_deps := $(glapi_gen_common_deps)
|
|
|
|
# $(1): path to an XML file
|
|
# $(2): empty, es1, or es2 for entry point filtering
|
|
define glapi_gen_dispatch
|
|
@mkdir -p $(dir $@)
|
|
$(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(glapi_gen_dispatch_script) \
|
|
-f $(1) -m remap_table $(if $(2),-c $(2),) > $@
|
|
endef
|
|
|
|
glapi_gen_remap_script := $(top_srcdir)/src/mapi/glapi/gen/remap_helper.py
|
|
glapi_gen_remap_deps := $(glapi_gen_common_deps)
|
|
|
|
# $(1): path to an XML file
|
|
# $(2): empty, es1, or es2 for entry point filtering
|
|
define glapi_gen_remap
|
|
@mkdir -p $(dir $@)
|
|
$(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS) $(glapi_gen_remap_script) \
|
|
-f $(1) $(if $(2),-c $(2),) > $@
|
|
endef
|