diff options
Diffstat (limited to 'samsung-ipc')
-rw-r--r-- | samsung-ipc/Makefile.am | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/samsung-ipc/Makefile.am b/samsung-ipc/Makefile.am index b26ba56..841d9d9 100644 --- a/samsung-ipc/Makefile.am +++ b/samsung-ipc/Makefile.am @@ -6,21 +6,38 @@ AM_CFLAGS = \ $(OPENSSL_CFLAGS) \ $(NULL) +if WANT_DEBUG +AM_CFLAGS += -ggdb -O0 +endif + lib_LTLIBRARIES = \ libsamsung-ipc.la \ $(NULL) libsamsung_ipc_la_SOURCES = \ - crespo_ipc.c \ - crespo_nv_data.c \ ipc.c \ ipc_util.c \ util.c \ + \ misc.c \ sec.c \ gprs.c \ call.c \ + net.c \ + $(NULL) + +if WANT_PROTOCOL_VERISON_CRESPO +libsamsung_ipc_la_SOURCES += \ + device/crespo/crespo_ipc.c \ + device/crespo/crespo_nv_data.c \ + $(NULL) +endif + +if WANT_PROTOCOL_VERISON_H1 +libsamsung_ipc_la_SOURCES += \ + device/h1/h1_ipc.c \ $(NULL) +endif libsamsung_ipc_la_LIBADD = \ $(OPENSSL_LIBS) \ |