From 7f781eb61215c84bd0f79838fbcb5efd66121677 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sat, 30 Dec 2023 01:27:42 +0100 Subject: tools: Add afcclient utility --- tools/Makefile.am | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'tools/Makefile.am') 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 = \ idevicedevmodectl \ idevicenotificationproxy \ idevicecrashreport \ - idevicesetlocation + idevicesetlocation \ + afcclient idevicebtlogger_SOURCES = idevicebtlogger.c iidevicebtlogger_CFLAGS = $(AM_CFLAGS) @@ -132,3 +133,12 @@ idevicesetlocation_SOURCES = idevicesetlocation.c idevicesetlocation_CFLAGS = $(AM_CFLAGS) idevicesetlocation_LDFLAGS = $(AM_LDFLAGS) idevicesetlocation_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la + +afcclient_SOURCES = afcclient.c +afcclient_CFLAGS = $(AM_CFLAGS) +afcclient_LDFLAGS = $(AM_LDFLAGS) +if HAVE_READLINE + afcclient_CFLAGS += $(readline_CFLAGS) + afcclient_LDFLAGS += $(readline_LIBS) +endif +afcclient_LDADD = $(top_builddir)/src/libimobiledevice-1.0.la $(limd_glue_LIBS) -- cgit v1.1-32-gdbae