diff options
author | Joshua Hill | 2010-05-20 05:46:51 -0400 |
---|---|---|
committer | Joshua Hill | 2010-05-20 05:46:51 -0400 |
commit | 332faac3f152e14fb43351e82e3be034e72b73b3 (patch) | |
tree | de18b33d67527a550bf2c1d6e05a964c4726cc2c /src/Makefile.am | |
download | idevicerestore-332faac3f152e14fb43351e82e3be034e72b73b3.tar.gz idevicerestore-332faac3f152e14fb43351e82e3be034e72b73b3.tar.bz2 |
Initial commit
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
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 |