blob: 4ec43a1157a7b10c5fe6c13c3048b1e82451aa45 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
NULL =
AM_CFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/samsung-ipc \
-I$(top_srcdir)/samsung-ipc/device/xmm6260 \
$(OPENSSL_CFLAGS) \
$(NULL)
if WANT_DEBUG
AM_CFLAGS += -ggdb -O0 -DDEBUG
endif
lib_LTLIBRARIES = \
libsamsung-ipc.la \
$(NULL)
libsamsung_ipc_la_SOURCES = \
ipc.c \
ipc_util.c \
ipc_devices.c \
rfs.c \
misc.c \
sec.c \
sms.c \
gen.c \
gprs.c \
call.c \
net.c \
wakelock.c \
ipc_private.h \
ipc_devices.h \
device/crespo/crespo_ipc.c \
device/aries/aries_ipc.c \
device/aries/sipc4.h \
device/aries/aries_ipc.h \
device/aries/onedram.h \
device/aries/phonet.h \
device/crespo/crespo_modem_ctl.h \
device/crespo/crespo_ipc.h \
device/xmm6260/xmm6260_loader.c \
device/xmm6260/xmm6260_loader.h \
device/xmm6260/xmm6260_modemctl.c \
device/xmm6260/xmm6260_modemctl.h \
device/xmm6260/xmm6260_ipc.c \
device/xmm6260/xmm6260_ipc.h \
device/xmm6260/modem_prj.h \
device/galaxys2/galaxys2_loader.c \
device/galaxys2/galaxys2_loader.h \
device/galaxys2/galaxys2_ipc.c \
device/maguro/maguro_loader.c \
device/maguro/maguro_loader.h \
device/maguro/maguro_ipc.c \
device/piranha/piranha_loader.c \
device/piranha/piranha_loader.h \
device/piranha/piranha_ipc.c \
$(NULL)
AM_CFLAGS += -DDEVICE_IPC_V4
libsamsung_ipc_la_LIBADD = \
$(OPENSSL_LIBS) \
$(NULL)
|