aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/Makefile.am
blob: d21c1729e75cdf524676d21f87c222d40d7d12dd (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
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 \
	\
	rfs.c \
	misc.c \
	sec.c \
	gen.c \
	gprs.c \
	call.c \
	net.c \
	sms.c \
	$(NULL)

if WANT_PROTOCOL_VERISON_CRESPO
libsamsung_ipc_la_SOURCES += \
	device/crespo/crespo_ipc.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)