diff options
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..8a96e46 --- /dev/null +++ b/src/Makefile.am | |||
@@ -0,0 +1,32 @@ | |||
1 | AM_CPPFLAGS = \ | ||
2 | -I$(top_srcdir)/include \ | ||
3 | -I$(top_srcdir) | ||
4 | |||
5 | AM_CFLAGS = \ | ||
6 | $(GLOBAL_CFLAGS) \ | ||
7 | $(libplist_CFLAGS) \ | ||
8 | $(libusb_CFLAGS) \ | ||
9 | $(limd_glue_CFLAGS) \ | ||
10 | $(libimobiledevice_CFLAGS) | ||
11 | |||
12 | AM_LDFLAGS = \ | ||
13 | $(libplist_LIBS) \ | ||
14 | $(libusb_LIBS) \ | ||
15 | $(limd_glue_LIBS) \ | ||
16 | $(libimobiledevice_LIBS) \ | ||
17 | $(libpthread_LIBS) | ||
18 | |||
19 | sbin_PROGRAMS = usbmuxd | ||
20 | |||
21 | usbmuxd_CFLAGS = $(AM_CFLAGS) | ||
22 | usbmuxd_LDFLAGS = $(AM_LDFLAGS) -no-undefined | ||
23 | usbmuxd_SOURCES = \ | ||
24 | client.c client.h \ | ||
25 | device.c device.h \ | ||
26 | preflight.c preflight.h \ | ||
27 | log.c log.h \ | ||
28 | usbmuxd-proto.h \ | ||
29 | usb.c usb.h \ | ||
30 | utils.c utils.h \ | ||
31 | conf.c conf.h \ | ||
32 | main.c | ||