FreeCalypso > hg > freecalypso-tools
comparison miscutil/Makefile @ 412:a5dab452be0d
mokosrec2bin utility imported from the old freecalypso-reveng tree,
header comments changed for new understanding and new usage in forward
rather than reverse engineering
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 25 Oct 2018 19:23:35 +0000 |
parents | fb577c31e960 |
children | 90d7c360a614 |
comparison
equal
deleted
inserted
replaced
411:8b8e723f5699 | 412:a5dab452be0d |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= fc-fr2tch fc-gsm2vm fc-rgbconv fc-serterm fc-tch2fr fc-vm2hex imei-luhn | 3 PROGS= fc-fr2tch fc-gsm2vm fc-rgbconv fc-serterm fc-tch2fr fc-vm2hex imei-luhn\ |
4 mokosrec2bin | |
4 SCRIPTS=c139explore pirexplore | 5 SCRIPTS=c139explore pirexplore |
5 INSTBIN=/opt/freecalypso/bin | 6 INSTBIN=/opt/freecalypso/bin |
6 | 7 |
7 all: ${PROGS} | 8 all: ${PROGS} |
8 | 9 |
33 ${CC} ${CFLAGS} -o $@ $@.c | 34 ${CC} ${CFLAGS} -o $@ $@.c |
34 | 35 |
35 imei-luhn: imei-luhn.c | 36 imei-luhn: imei-luhn.c |
36 ${CC} ${CFLAGS} -o $@ $@.c | 37 ${CC} ${CFLAGS} -o $@ $@.c |
37 | 38 |
39 mokosrec2bin: mokosrec2bin.c | |
40 ${CC} ${CFLAGS} -o $@ $@.c | |
41 | |
38 install: | 42 install: |
39 mkdir -p ${INSTBIN} | 43 mkdir -p ${INSTBIN} |
40 install -c ${PROGS} ${SCRIPTS} ${INSTBIN} | 44 install -c ${PROGS} ${SCRIPTS} ${INSTBIN} |
41 | 45 |
42 clean: | 46 clean: |