aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-03-02 16:27:11 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2021-03-02 16:27:11 +0100
commit3bcc9e2a31c970ee3e6a6a5c57f1df83ddb77857 (patch)
treef304abd0bd5c5a1603927ef01ef3841c4ecc682a
parentab61d9c8200f954402d7bfc5c4d940e7d0c4e56f (diff)
downloadhardware_replicant_libsamsung-ipc-3bcc9e2a31c970ee3e6a6a5c57f1df83ddb77857.tar.gz
hardware_replicant_libsamsung-ipc-3bcc9e2a31c970ee3e6a6a5c57f1df83ddb77857.tar.bz2
hardware_replicant_libsamsung-ipc-3bcc9e2a31c970ee3e6a6a5c57f1df83ddb77857.zip
Add common
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--samsung-ipc/Makefile.am14
-rw-r--r--samsung-ipc/common/Makefile.am15
2 files changed, 16 insertions, 13 deletions
diff --git a/samsung-ipc/Makefile.am b/samsung-ipc/Makefile.am
index 99c3584..2bb18d9 100644
--- a/samsung-ipc/Makefile.am
+++ b/samsung-ipc/Makefile.am
@@ -15,21 +15,9 @@ lib_LTLIBRARIES = \
$(NULL)
libsamsung_ipc_la_SOURCES = \
- $(top_srcdir)/samsung-ipc/ipc.c \
- $(top_srcdir)/samsung-ipc/ipc.h \
- $(top_srcdir)/samsung-ipc/ipc_utils.c \
- $(top_srcdir)/samsung-ipc/utils.c \
- $(top_srcdir)/samsung-ipc/call.c \
- $(top_srcdir)/samsung-ipc/sms.c \
- $(top_srcdir)/samsung-ipc/sec.c \
- $(top_srcdir)/samsung-ipc/net.c \
- $(top_srcdir)/samsung-ipc/misc.c \
- $(top_srcdir)/samsung-ipc/svc.c \
- $(top_srcdir)/samsung-ipc/gprs.c \
- $(top_srcdir)/samsung-ipc/rfs.c \
- $(top_srcdir)/samsung-ipc/gen.c \
$(NULL)
+include $(top_srcdir)/samsung-ipc/common/Makefile.am
include $(top_srcdir)/samsung-ipc/devices/Makefile.am
include $(top_srcdir)/samsung-ipc/modems/Makefile.am
include $(top_srcdir)/samsung-ipc/partitions/Makefile.am
diff --git a/samsung-ipc/common/Makefile.am b/samsung-ipc/common/Makefile.am
new file mode 100644
index 0000000..801dfb9
--- /dev/null
+++ b/samsung-ipc/common/Makefile.am
@@ -0,0 +1,15 @@
+libsamsung_ipc_la_SOURCES += \
+ $(top_srcdir)/samsung-ipc/ipc.c \
+ $(top_srcdir)/samsung-ipc/ipc.h \
+ $(top_srcdir)/samsung-ipc/ipc_utils.c \
+ $(top_srcdir)/samsung-ipc/utils.c \
+ $(top_srcdir)/samsung-ipc/call.c \
+ $(top_srcdir)/samsung-ipc/sms.c \
+ $(top_srcdir)/samsung-ipc/sec.c \
+ $(top_srcdir)/samsung-ipc/net.c \
+ $(top_srcdir)/samsung-ipc/misc.c \
+ $(top_srcdir)/samsung-ipc/svc.c \
+ $(top_srcdir)/samsung-ipc/gprs.c \
+ $(top_srcdir)/samsung-ipc/rfs.c \
+ $(top_srcdir)/samsung-ipc/gen.c \
+ $(NULL)