blob: d2fcfefb9987a493ab056ce817fdb1e305b2edd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
AM_CFLAGS = $(GLOBAL_CFLAGS) -I$(top_srcdir)/src $(libplist_CFLAGS) $(libusb_CFLAGS)
AM_LDFLAGS = $(libplist_LIBS) $(libusb_LIBS)
bin_PROGRAMS = usbmuxd
usbmuxd_SOURCES = client.c client.h \
device.c device.h \
log.c log.h \
usb-linux.c usb.h \
utils.c utils.h \
main.c
usbmuxd_CFLAGS = $(AM_CFLAGS)
usbmuxd_LDFLAGS = $(AM_LDFLAGS)
|