blob: b6ac96c310fde4a1f5015c28d6ee7cce7b1edc61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
INCLUDES = \
-I$(top_srcdir)/Core \
-I$(top_srcdir)/Shared
lib_LTLIBRARIES = libGobiConnectionMgmt.la
libGobiConnectionMgmt_la_CPPFLAGS = \
-D WDS_SUPPORT \
-D DMS_SUPPORT \
-D NAS_SUPPORT \
-D PDS_SUPPORT \
-D CAT_SUPPORT \
-D RMS_SUPPORT \
-D OMA_SUPPORT \
-D UIM_SUPPORT \
-D WMS_SUPPORT \
-D IMG2K_SUPPORT \
-D IMG_SUPPORT \
-D VOICE_SUPPORT
libGobiConnectionMgmt_la_SOURCES = \
GobiConnectionMgmtAPI.h \
GobiConnectionMgmt.cpp \
GobiConnectionMgmt.h \
GobiConnectionMgmtExports.cpp
libGobiConnectionMgmt_la_LIBADD = \
$(top_builddir)/Database/QMI/libQMIDB.la \
$(top_builddir)/Shared/libShared.la \
$(top_builddir)/Core/libCore.la
|