comparison miscutil/Makefile @ 758:b8cb116a7dc7

arfcn2ti utility added to miscutil
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 27 Nov 2020 03:53:11 +0000
parents 2dcfad8a3ed0
children d2fccd82a83e
comparison
equal deleted inserted replaced
757:e4281d3f76f2 758:b8cb116a7dc7
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= fc-fr2tch fc-gsm2vm fc-pulse-dtr fc-pulse-rts fc-rgbconv fc-serterm \ 3 PROGS= arfcn2ti fc-fr2tch fc-gsm2vm fc-pulse-dtr fc-pulse-rts fc-rgbconv \
4 fc-tch2fr fc-vm2hex imei-luhn make-imeisv mokosrec2bin srec-regions 4 fc-serterm fc-tch2fr fc-vm2hex imei-luhn make-imeisv mokosrec2bin \
5 srec-regions
5 SCRIPTS=c139explore pirexplore 6 SCRIPTS=c139explore pirexplore
6 7
7 INSTALL_PREFIX= /opt/freecalypso 8 INSTALL_PREFIX= /opt/freecalypso
8 9
9 INSTBIN=${INSTALL_PREFIX}/bin 10 INSTBIN=${INSTALL_PREFIX}/bin
12 13
13 FR2TCH_OBJS= fc-fr2tch.o gsm0610.o 14 FR2TCH_OBJS= fc-fr2tch.o gsm0610.o
14 GSM2VM_OBJS= fc-gsm2vm.o gsm0610.o 15 GSM2VM_OBJS= fc-gsm2vm.o gsm0610.o
15 TCH2FR_OBJS= fc-tch2fr.o gsm0610.o 16 TCH2FR_OBJS= fc-tch2fr.o gsm0610.o
16 SERTERM_OBJS= fc-serterm.o ttypassthru.o ../libserial/libserial.a 17 SERTERM_OBJS= fc-serterm.o ttypassthru.o ../libserial/libserial.a
18
19 arfcn2ti: arfcn2ti.c
20 ${CC} ${CFLAGS} -o $@ $@.c
17 21
18 fc-fr2tch: ${FR2TCH_OBJS} 22 fc-fr2tch: ${FR2TCH_OBJS}
19 ${CC} ${CFLAGS} -o $@ ${FR2TCH_OBJS} 23 ${CC} ${CFLAGS} -o $@ ${FR2TCH_OBJS}
20 24
21 fc-gsm2vm: ${GSM2VM_OBJS} 25 fc-gsm2vm: ${GSM2VM_OBJS}