From 332faac3f152e14fb43351e82e3be034e72b73b3 Mon Sep 17 00:00:00 2001 From: Joshua Hill Date: Thu, 20 May 2010 05:46:51 -0400 Subject: Initial commit --- src/Makefile.am | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..b997ca6 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,18 @@ +AM_CFLAGS = \ + $(GLOBAL_CFLAGS) \ + $(libimobiledevice_CFLAGS) \ + $(libplist_CFLAGS) \ + $(libzip_CFLAGS) \ + $(libcurl_CFLAGS) + +AM_LDFLAGS =\ + $(libimobiledevice_LIBS) \ + $(libplist_LIBS) \ + $(libzip_LIBS) \ + $(libcurl_LIBS) + +bin_PROGRAMS = idevicerestore + +idevicerestore_SOURCES = idevicerestore.c ipsw.c tss.c base64.c +idevicerestore_CFLAGS = $(AM_CFLAGS) +idevicerestore_LDFLAGS = $(AM_LDFLAGS) \ No newline at end of file -- cgit v1.1-32-gdbae