diff options
author | 2023-12-30 01:27:42 +0100 | |
---|---|---|
committer | 2023-12-30 01:27:42 +0100 | |
commit | 7f781eb61215c84bd0f79838fbcb5efd66121677 (patch) | |
tree | 2741401eec23b6504e068d8640f2ac9237e3795e /tools/Makefile.am | |
parent | 76f924c2a1c61d05ece9bdc699a350ad165e3761 (diff) | |
download | libimobiledevice-7f781eb61215c84bd0f79838fbcb5efd66121677.tar.gz libimobiledevice-7f781eb61215c84bd0f79838fbcb5efd66121677.tar.bz2 |
tools: Add afcclient utility
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index bd93631..4cac1fc 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am | |||
@@ -31,7 +31,8 @@ bin_PROGRAMS = \ | |||
31 | idevicedevmodectl \ | 31 | idevicedevmodectl \ |
32 | idevicenotificationproxy \ | 32 | idevicenotificationproxy \ |
33 | idevicecrashreport \ | 33 | idevicecrashreport \ |
34 | idevicesetlocation | 34 | idevicesetlocation \ |
35 | afcclient | ||
35 | 36 | ||
36 | idevicebtlogger_SOURCES = idevicebtlogger.c | 37 | idevicebtlogger_SOURCES = idevicebtlogger.c |
37 | iidevicebtlogger_CFLAGS = $(AM_CFLAGS) | 38 | iidevicebtlogger_CFLAGS = $(AM_CFLAGS) |
@@ -132,3 +133,12 @@ idevicesetlocation_SOURCES = idevicesetlocation.c | |||
132 | idevicesetlocation_CFLAGS = $(AM_CFLAGS) | 133 | idevicesetlocation_CFLAGS = $(AM_CFLAGS) |
133 | idevicesetlocation_LDFLAGS = $(AM_LDFLAGS) | 134 | idevicesetlocation_LDFLAGS = $(AM_LDFLAGS) |
134 | idevicesetlocation_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la | 135 | idevicesetlocation_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la |
136 | |||
137 | afcclient_SOURCES = afcclient.c | ||
138 | afcclient_CFLAGS = $(AM_CFLAGS) | ||
139 | afcclient_LDFLAGS = $(AM_LDFLAGS) | ||
140 | if HAVE_READLINE | ||
141 | afcclient_CFLAGS += $(readline_CFLAGS) | ||
142 | afcclient_LDFLAGS += $(readline_LIBS) | ||
143 | endif | ||
144 | afcclient_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la $(limd_glue_LIBS) | ||