summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-02-09 04:04:36 +0100
committerGravatar Nikias Bassen2022-02-09 04:04:36 +0100
commite41dbc3ddbe30a414e73fa25d9c7c304ffe6989e (patch)
tree599c99a2f32bc18f1e9ebc740d0a12d71c49bb10 /src/Makefile.am
parentee9104bcb8d494b579e122a2dcc94a2b79d38e4b (diff)
downloadlibimobiledevice-e41dbc3ddbe30a414e73fa25d9c7c304ffe6989e.tar.gz
libimobiledevice-e41dbc3ddbe30a414e73fa25d9c7c304ffe6989e.tar.bz2
Add support for wireless pairing
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 106eef7..13221b9 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,7 @@
1AM_CPPFLAGS = \ 1AM_CPPFLAGS = \
2 -I$(top_srcdir)/include \ 2 -I$(top_srcdir)/include \
3 -I$(top_srcdir)/3rd_party/libsrp6a-sha512 \
4 -I$(top_srcdir)/3rd_party/ed25519 \
3 -I$(top_srcdir) 5 -I$(top_srcdir)
4 6
5AM_CFLAGS = \ 7AM_CFLAGS = \
@@ -20,13 +22,20 @@ AM_LDFLAGS = \
20 22
21lib_LTLIBRARIES = libimobiledevice-1.0.la 23lib_LTLIBRARIES = libimobiledevice-1.0.la
22libimobiledevice_1_0_la_LIBADD = $(top_builddir)/common/libinternalcommon.la 24libimobiledevice_1_0_la_LIBADD = $(top_builddir)/common/libinternalcommon.la
25if HAVE_WIRELESS_PAIRING
26libimobiledevice_1_0_la_LIBADD += $(top_builddir)/3rd_party/ed25519/libed25519.la $(top_builddir)/3rd_party/libsrp6a-sha512/libsrp6a-sha512.la
27endif
23libimobiledevice_1_0_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIMOBILEDEVICE_SO_VERSION) -no-undefined 28libimobiledevice_1_0_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIMOBILEDEVICE_SO_VERSION) -no-undefined
29if DARWIN
30libimobiledevice_1_0_la_LDFLAGS += -framework CoreFoundation -framework SystemConfiguration
31endif
24libimobiledevice_1_0_la_SOURCES = \ 32libimobiledevice_1_0_la_SOURCES = \
25 idevice.c idevice.h \ 33 idevice.c idevice.h \
26 service.c service.h \ 34 service.c service.h \
27 property_list_service.c property_list_service.h \ 35 property_list_service.c property_list_service.h \
28 device_link_service.c device_link_service.h \ 36 device_link_service.c device_link_service.h \
29 lockdown.c lockdown.h \ 37 lockdown.c lockdown.h \
38 lockdown-cu.c \
30 afc.c afc.h \ 39 afc.c afc.h \
31 file_relay.c file_relay.h \ 40 file_relay.c file_relay.h \
32 notification_proxy.c notification_proxy.h \ 41 notification_proxy.c notification_proxy.h \