mesa/src/mapi/Makefile.sources
Ben Crocker c26be2b2e9 mapi: Enable assembly language API acceleration for PPC64LE (V2)
Implement assembly language API acceleration for PPC64LE,
analogous to long-standing implementations for X86 and X86-64.

See also similar implementation in libglvnd.

Tested with Piglit.

Signed-off-by: Ben Crocker <bcrocker@redhat.com>
Acked-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Bill Schmidt <wschmidt@linux.vnet.ibm.com>
2017-06-28 08:20:45 +01:00

49 lines
1.1 KiB
Text

# src/mapi/Makefile.sources
#
# mapi may be used in several ways
#
# - In default mode, mapi implements the interface defined by mapi.h. To use
# this mode, compile MAPI_FILES.
#
# - In util mode, mapi provides utility functions for use with glapi. To use
# this mode, compile MAPI_UTIL_FILES with MAPI_MODE_UTIL defined.
#
# - In glapi mode, mapi implements the interface defined by glapi.h. To use
# this mode, compile MAPI_GLAPI_FILES with MAPI_MODE_GLAPI defined.
#
# - In bridge mode, mapi provides entry points calling into glapi. To use
# this mode, compile MAPI_BRIDGE_FILES with MAPI_MODE_BRIDGE defined.
MAPI_UTIL_FILES = \
u_current.c \
u_current.h \
u_execmem.c \
u_execmem.h
MAPI_BRIDGE_FILES = \
entry.c \
entry.h \
entry_x86-64_tls.h \
entry_x86_tls.h \
entry_x86_tsd.h \
entry_ppc64le_tls.h \
entry_ppc64le_tsd.h \
mapi_tmp.h
MAPI_FILES = \
entry.c \
stub.c \
stub.h \
table.c \
table.h \
$(MAPI_UTIL_FILES)
MAPI_GLAPI_FILES = \
entry.c \
mapi_glapi.c \
stub.c \
stub.h \
table.c \
table.h \
$(MAPI_UTIL_FILES)