blob: ace33d4ca46f23aaf1f3dd883f4a24fd8c866f85 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
AM_CFLAGS = \
$(GLOBAL_CFLAGS) \
$(LFS_CFLAGS) \
$(libirecovery_CFLAGS) \
$(libimobiledevice_CFLAGS) \
$(libplist_CFLAGS) \
$(libzip_CFLAGS) \
$(zlib_CFLAGS) \
$(openssl_CFLAGS) \
$(libcurl_CFLAGS)
AM_LDFLAGS = \
$(AC_LDFLAGS) \
$(libirecovery_LIBS) \
$(libimobiledevice_LIBS) \
$(libplist_LIBS) \
$(libzip_LIBS) \
$(zlib_LIBS) \
$(openssl_LIBS) \
$(libcurl_LIBS)
AM_LDADD = $(AC_LDADD)
bin_PROGRAMS = idevicerestore
idevicerestore_SOURCES = \
idevicerestore.c idevicerestore.h \
endianness.h \
common.c common.h \
tss.c tss.h \
fls.c fls.h \
mbn.c mbn.h \
img3.c img3.h \
img4.c img4.h \
ftab.c ftab.h \
ipsw.c ipsw.h \
normal.c normal.h \
dfu.c dfu.h \
recovery.c recovery.h \
restore.c restore.h \
asr.c asr.h \
fdr.c fdr.h \
limera1n_payload.h \
limera1n.c limera1n.h \
download.c download.h \
locking.c locking.h \
socket.c socket.h \
thread.c thread.h \
jsmn.c jsmn.h \
json_plist.c json_plist.h
if USE_INTERNAL_SHA1
idevicerestore_SOURCES += sha1.c sha1.h
endif
idevicerestore_CFLAGS = $(AM_CFLAGS)
idevicerestore_LDFLAGS = $(AM_LDFLAGS)
idevicerestore_LDADD = $(AM_LDADD)
|