blob: 8a96e464748de9854055f68fa19827303813bcf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)
AM_CFLAGS = \
$(GLOBAL_CFLAGS) \
$(libplist_CFLAGS) \
$(libusb_CFLAGS) \
$(limd_glue_CFLAGS) \
$(libimobiledevice_CFLAGS)
AM_LDFLAGS = \
$(libplist_LIBS) \
$(libusb_LIBS) \
$(limd_glue_LIBS) \
$(libimobiledevice_LIBS) \
$(libpthread_LIBS)
sbin_PROGRAMS = usbmuxd
usbmuxd_CFLAGS = $(AM_CFLAGS)
usbmuxd_LDFLAGS = $(AM_LDFLAGS) -no-undefined
usbmuxd_SOURCES = \
client.c client.h \
device.c device.h \
preflight.c preflight.h \
log.c log.h \
usbmuxd-proto.h \
usb.c usb.h \
utils.c utils.h \
conf.c conf.h \
main.c
|