2013-01-21 10:27:25 -08:00
|
|
|
# src/mapi/Makefile.sources
|
2010-04-23 16:07:47 +08:00
|
|
|
#
|
2010-12-11 03:27:54 +08:00
|
|
|
# mapi may be used in several ways
|
2010-04-23 16:07:47 +08:00
|
|
|
#
|
2010-12-11 03:27:54 +08:00
|
|
|
# - In default mode, mapi implements the interface defined by mapi.h. To use
|
2012-03-16 12:55:40 -04:00
|
|
|
# this mode, compile MAPI_FILES.
|
2010-12-11 03:27:54 +08:00
|
|
|
#
|
|
|
|
|
# - In util mode, mapi provides utility functions for use with glapi. To use
|
2012-03-16 12:55:40 -04:00
|
|
|
# this mode, compile MAPI_UTIL_FILES with MAPI_MODE_UTIL defined.
|
2010-12-11 03:33:42 +08:00
|
|
|
#
|
|
|
|
|
# - In glapi mode, mapi implements the interface defined by glapi.h. To use
|
2012-03-16 12:55:40 -04:00
|
|
|
# this mode, compile MAPI_GLAPI_FILES with MAPI_MODE_GLAPI defined.
|
2010-12-17 00:24:27 +08:00
|
|
|
#
|
|
|
|
|
# - In bridge mode, mapi provides entry points calling into glapi. To use
|
2012-03-16 12:55:40 -04:00
|
|
|
# this mode, compile MAPI_BRIDGE_FILES with MAPI_MODE_BRIDGE defined.
|
2010-04-23 16:06:26 +08:00
|
|
|
|
2012-03-16 12:55:40 -04:00
|
|
|
MAPI_UTIL_FILES = \
|
2014-12-17 18:50:25 -08:00
|
|
|
u_current.c \
|
|
|
|
|
u_current.h \
|
|
|
|
|
u_execmem.c \
|
2015-03-04 19:17:57 -07:00
|
|
|
u_execmem.h
|
2010-04-23 16:07:47 +08:00
|
|
|
|
2013-11-10 19:01:58 -08:00
|
|
|
MAPI_BRIDGE_FILES = \
|
2014-12-17 18:50:25 -08:00
|
|
|
entry.c \
|
|
|
|
|
entry.h \
|
|
|
|
|
entry_x86-64_tls.h \
|
|
|
|
|
entry_x86_tls.h \
|
|
|
|
|
entry_x86_tsd.h \
|
|
|
|
|
mapi_tmp.h
|
2013-11-10 19:01:58 -08:00
|
|
|
|
|
|
|
|
MAPI_FILES = \
|
2014-12-17 18:50:25 -08:00
|
|
|
entry.c \
|
|
|
|
|
mapi.c \
|
|
|
|
|
mapi.h \
|
|
|
|
|
stub.c \
|
|
|
|
|
stub.h \
|
|
|
|
|
table.c \
|
|
|
|
|
table.h \
|
2012-03-16 12:55:40 -04:00
|
|
|
$(MAPI_UTIL_FILES)
|
2010-12-11 03:33:42 +08:00
|
|
|
|
2012-03-16 12:55:40 -04:00
|
|
|
MAPI_GLAPI_FILES = \
|
2014-12-17 18:50:25 -08:00
|
|
|
entry.c \
|
|
|
|
|
mapi_glapi.c \
|
|
|
|
|
stub.c \
|
|
|
|
|
stub.h \
|
|
|
|
|
table.c \
|
|
|
|
|
table.h \
|
2012-03-16 12:55:40 -04:00
|
|
|
$(MAPI_UTIL_FILES)
|
2010-12-17 00:24:27 +08:00
|
|
|
|