summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
diff options
context:
space:
mode:
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 \