aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/Makefile.am
blob: cee8d2835ba2c2dd8ff37f44620d457d172e6031 (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
NULL =

AM_CFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/samsung-ipc \
	$(OPENSSL_CFLAGS) \
	$(NULL)

if WANT_DEBUG
AM_CFLAGS += -ggdb -O0
endif

lib_LTLIBRARIES = \
	libsamsung-ipc.la \
	$(NULL)

libsamsung_ipc_la_SOURCES = \
	ipc.c \
	ipc_util.c \
	util.c \
	\
	misc.c \
	sec.c \
	gprs.c \
	call.c \
	net.c \
	sms.c \
	$(NULL)

if WANT_PROTOCOL_VERISON_CRESPO
libsamsung_ipc_la_SOURCES += \
	device/crespo/crespo_ipc.c \
	device/crespo/crespo_nv_data.c \
	$(NULL)
AM_CFLAGS += -DDEVICE_CRESPO
endif

if WANT_PROTOCOL_VERISON_H1
libsamsung_ipc_la_SOURCES += \
	device/h1/h1_ipc.c \
	$(NULL)
AM_CFLAGS += -DDEVICE_H1
endif

libsamsung_ipc_la_LIBADD = \
	$(OPENSSL_LIBS) \
	$(NULL)