annotate miscprog/Makefile @ 221:9f2e0c34fe33

ftmdump (C1xx factory data reverse eng) tool written
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 17 Nov 2017 19:58:07 +0000
parents b6a95d35fabc
children 63c5bb42eca5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
1 CC= gcc
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
2 CFLAGS= -O2
221
9f2e0c34fe33 ftmdump (C1xx factory data reverse eng) tool written
Mychaela Falconia <falcon@freecalypso.org>
parents: 218
diff changeset
3 STD= atsc calextract factdiff ftmdump grokdsn memwrite-grep mokosrec2bin \
9f2e0c34fe33 ftmdump (C1xx factory data reverse eng) tool written
Mychaela Falconia <falcon@freecalypso.org>
parents: 218
diff changeset
4 pircalextr pircksum pircksum2 rfcap-grep
60
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
5 CRYPTO= imeibrute pirimei
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
6 PROGS= ${STD} ${CRYPTO}
0
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
7
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
8 all: ${PROGS}
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
9
59
3f38da3933c2 Pirelli's IMEI obfuscation cracked!
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 52
diff changeset
10 ${STD}:
0
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
11 ${CC} ${CFLAGS} -o $@ $@.c
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
12
60
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
13 ${CRYPTO}:
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
14 ${CC} ${CFLAGS} -o $@ $@.c -lcrypto
0
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
15
65
3890c2672fe0 atsc hack written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 64
diff changeset
16 atsc: atsc.c
180
25b54c5ad6c2 calextract tool written, works
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 129
diff changeset
17 calextract: calextract.c
60
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
18 factdiff: factdiff.c
221
9f2e0c34fe33 ftmdump (C1xx factory data reverse eng) tool written
Mychaela Falconia <falcon@freecalypso.org>
parents: 218
diff changeset
19 ftmdump: ftmdump.c
191
0c631396b8ce started grokdsn utility, parses header successfully
Michael Spacefalcon <falcon@ivan.Harhan.ORG>
parents: 181
diff changeset
20 grokdsn: grokdsn.c
60
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
21 imeibrute: imeibrute.c
205
8bdc87c0fc03 memwrite-grep hack-utility written
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents: 191
diff changeset
22 memwrite-grep: memwrite-grep.c
60
1e797f846563 imeibrute written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 59
diff changeset
23 mokosrec2bin: mokosrec2bin.c
218
b6a95d35fabc pircalextr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 215
diff changeset
24 pircalextr: pircalextr.c
181
bf4286245c74 Pirelli's RF calibration cracked
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 180
diff changeset
25 pircksum: pircksum.c
215
d69f7512e3c1 Pirelli: documented and verified the checksum scheme used for the factory block
Mychaela Falconia <falcon@freecalypso.org>
parents: 205
diff changeset
26 pircksum2: pircksum2.c
59
3f38da3933c2 Pirelli's IMEI obfuscation cracked!
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 52
diff changeset
27 pirimei: pirimei.c
64
b8753e705e1a rfcap-grep.c hack-utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 60
diff changeset
28 rfcap-grep: rfcap-grep.c
59
3f38da3933c2 Pirelli's IMEI obfuscation cracked!
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents: 52
diff changeset
29
0
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
30 clean:
cb736d95338d mokosrec2bin utility written
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff changeset
31 rm -f ${PROGS} *.o *errs *.out