diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 9 |
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 @@ | |||
1 | AM_CPPFLAGS = \ | 1 | AM_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 | ||
5 | AM_CFLAGS = \ | 7 | AM_CFLAGS = \ |
@@ -20,13 +22,20 @@ AM_LDFLAGS = \ | |||
20 | 22 | ||
21 | lib_LTLIBRARIES = libimobiledevice-1.0.la | 23 | lib_LTLIBRARIES = libimobiledevice-1.0.la |
22 | libimobiledevice_1_0_la_LIBADD = $(top_builddir)/common/libinternalcommon.la | 24 | libimobiledevice_1_0_la_LIBADD = $(top_builddir)/common/libinternalcommon.la |
25 | if HAVE_WIRELESS_PAIRING | ||
26 | libimobiledevice_1_0_la_LIBADD += $(top_builddir)/3rd_party/ed25519/libed25519.la $(top_builddir)/3rd_party/libsrp6a-sha512/libsrp6a-sha512.la | ||
27 | endif | ||
23 | libimobiledevice_1_0_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIMOBILEDEVICE_SO_VERSION) -no-undefined | 28 | libimobiledevice_1_0_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(LIBIMOBILEDEVICE_SO_VERSION) -no-undefined |
29 | if DARWIN | ||
30 | libimobiledevice_1_0_la_LDFLAGS += -framework CoreFoundation -framework SystemConfiguration | ||
31 | endif | ||
24 | libimobiledevice_1_0_la_SOURCES = \ | 32 | libimobiledevice_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 \ |