summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
blob: 328b700a39d8397aaff39a9efa577bac27fad5b5 (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
AM_CPPFLAGS = \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)

AM_CFLAGS = \
	$(GLOBAL_CFLAGS) \
	$(libplist_CFLAGS) \
	$(libusb_CFLAGS) \
	$(libimobiledevice_CFLAGS)

AM_LDFLAGS = \
	$(libplist_LIBS) \
	$(libusb_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