summaryrefslogtreecommitdiff
path: root/src/mapi/mapi/sources.mak
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapi/mapi/sources.mak')
-rw-r--r--src/mapi/mapi/sources.mak10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mapi/mapi/sources.mak b/src/mapi/mapi/sources.mak
index ed36e1af48..86d98cd143 100644
--- a/src/mapi/mapi/sources.mak
+++ b/src/mapi/mapi/sources.mak
@@ -7,6 +7,9 @@
#
# - In util mode, mapi provides utility functions for use with glapi. To use
# this mode, compile MAPI_UTIL_SOURCES with MAPI_MODE_UTIL defined.
+#
+# - In glapi mode, mapi implements the interface defined by glapi.h. To use
+# this mode, compile MAPI_GLAPI_SOURCES with MAPI_MODE_GLAPI defined.
MAPI_UTIL_SOURCES = \
u_current.c \
@@ -19,3 +22,10 @@ MAPI_SOURCES = \
stub.c \
table.c \
$(MAPI_UTIL_SOURCES)
+
+MAPI_GLAPI_SOURCES = \
+ entry.c \
+ mapi_glapi.c \
+ stub.c \
+ table.c \
+ $(MAPI_UTIL_SOURCES)