diff options
author | Chow Loong Jin | 2014-10-03 13:24:19 +0200 |
---|---|---|
committer | Nikias Bassen | 2014-10-03 13:24:19 +0200 |
commit | 305450ad5fc9d8027a35a67f3136d81e4ecf74e2 (patch) | |
tree | 8f159a64437e7bde96eceb00b7257f5c54948c3a /tools/Makefile.am | |
parent | cc4f7aa21edb54b6688aead32e8b8741247848c7 (diff) | |
download | libusbmuxd-305450ad5fc9d8027a35a67f3136d81e4ecf74e2.tar.gz libusbmuxd-305450ad5fc9d8027a35a67f3136d81e4ecf74e2.tar.bz2 |
Move socket and collection functions to a convenience library
This avoids the iproxy tool from relying on undocumented library ABI.
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index df6c803..40fa851 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,4 +1,4 @@ -AM_CFLAGS = $(GLOBAL_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/include +AM_CFLAGS = $(GLOBAL_CFLAGS) -I$(top_srcdir)/common -I$(top_srcdir)/src -I$(top_srcdir)/include AM_LDFLAGS = $(libpthread_LIBS) bin_PROGRAMS = iproxy @@ -6,5 +6,5 @@ bin_PROGRAMS = iproxy iproxy_SOURCES = iproxy.c iproxy_CFLAGS = $(AM_CFLAGS) iproxy_LDFLAGS = $(AM_LDFLAGS) -iproxy_LDADD = $(top_builddir)/src/libusbmuxd.la +iproxy_LDADD = $(top_builddir)/src/libusbmuxd.la $(top_builddir)/common/libinternalcommon.la |