diff options
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am new file mode 100644 index 0000000..ebb085c --- /dev/null +++ b/tools/Makefile.am | |||
@@ -0,0 +1,13 @@ | |||
1 | if BUILD_TOOLS | ||
2 | AM_CPPFLAGS = -I$(top_srcdir)/include | ||
3 | |||
4 | AM_CFLAGS = $(GLOBAL_CFLAGS) $(libusb_CFLAGS) | ||
5 | AM_LDFLAGS = $(libusb_LIBS) -lreadline | ||
6 | |||
7 | bin_PROGRAMS = irecovery | ||
8 | |||
9 | irecovery_SOURCES = irecovery.c | ||
10 | irecovery_CFLAGS = $(AM_CFLAGS) | ||
11 | irecovery_LDFLAGS = $(AM_LDFLAGS) | ||
12 | irecovery_LDADD = $(top_builddir)/src/libirecovery-1.0.la | ||
13 | endif | ||