mapi: remove u_compiler.h
[mesa.git] / src / mapi / Makefile.sources
1 # src/mapi/Makefile.sources
2 #
3 # mapi may be used in several ways
4 #
5 # - In default mode, mapi implements the interface defined by mapi.h. To use
6 # this mode, compile MAPI_FILES.
7 #
8 # - In util mode, mapi provides utility functions for use with glapi. To use
9 # this mode, compile MAPI_UTIL_FILES with MAPI_MODE_UTIL defined.
10 #
11 # - In glapi mode, mapi implements the interface defined by glapi.h. To use
12 # this mode, compile MAPI_GLAPI_FILES with MAPI_MODE_GLAPI defined.
13 #
14 # - In bridge mode, mapi provides entry points calling into glapi. To use
15 # this mode, compile MAPI_BRIDGE_FILES with MAPI_MODE_BRIDGE defined.
16
17 MAPI_UTIL_FILES = \
18 u_current.c \
19 u_current.h \
20 u_execmem.c \
21 u_execmem.h \
22 u_macros.h \
23 u_thread.h
24
25 MAPI_BRIDGE_FILES = \
26 entry.c \
27 entry.h \
28 entry_x86-64_tls.h \
29 entry_x86_tls.h \
30 entry_x86_tsd.h \
31 mapi_tmp.h
32
33 MAPI_FILES = \
34 entry.c \
35 mapi.c \
36 mapi.h \
37 stub.c \
38 stub.h \
39 table.c \
40 table.h \
41 $(MAPI_UTIL_FILES)
42
43 MAPI_GLAPI_FILES = \
44 entry.c \
45 mapi_glapi.c \
46 stub.c \
47 stub.h \
48 table.c \
49 table.h \
50 $(MAPI_UTIL_FILES)
51