You've already forked libimobiledevice
mirror of
https://github.com/encounter/libimobiledevice.git
synced 2026-03-30 11:18:43 -07:00
19 lines
636 B
Makefile
19 lines
636 B
Makefile
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)
|
|
|
|
AM_CFLAGS = $(GLOBAL_CFLAGS) $(libusbmuxd_CFLAGS) $(libplist_CFLAGS) $(libgnutls_CFLAGS) $(libtasn1_CFLAGS) $(openssl_CFLAGS) $(LFS_CFLAGS)
|
|
AM_LDFLAGS = $(libusbmuxd_LIBS) $(libplist_LIBS) ${libpthread_LIBS}
|
|
|
|
noinst_LTLIBRARIES = libinternalcommon.la
|
|
libinternalcommon_la_LIBADD =
|
|
libinternalcommon_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined
|
|
libinternalcommon_la_SOURCES = \
|
|
socket.c socket.h \
|
|
thread.c thread.h \
|
|
debug.c debug.h \
|
|
userpref.c userpref.h \
|
|
utils.c utils.h
|
|
|
|
if WIN32
|
|
libinternalcommon_la_LIBADD += -lole32 -lws2_32
|
|
endif
|