FreeCalypso > hg > freecalypso-tools
comparison miscutil/Makefile @ 735:5b8287c655cf
fc-pulse-dtr and fc-pulse-rts utilities implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 15 Sep 2020 04:29:43 +0000 |
parents | 89e9e79a7f55 |
children | 2dcfad8a3ed0 |
comparison
equal
deleted
inserted
replaced
734:23f41a61ff7a | 735:5b8287c655cf |
---|---|
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-pulse-dtr fc-pulse-rts fc-rgbconv fc-serterm \ |
4 mokosrec2bin srec-regions | 4 fc-tch2fr fc-vm2hex imei-luhn mokosrec2bin srec-regions |
5 SCRIPTS=c139explore pirexplore | 5 SCRIPTS=c139explore pirexplore |
6 | 6 |
7 INSTALL_PREFIX= /opt/freecalypso | 7 INSTALL_PREFIX= /opt/freecalypso |
8 | 8 |
9 INSTBIN=${INSTALL_PREFIX}/bin | 9 INSTBIN=${INSTALL_PREFIX}/bin |
18 fc-fr2tch: ${FR2TCH_OBJS} | 18 fc-fr2tch: ${FR2TCH_OBJS} |
19 ${CC} ${CFLAGS} -o $@ ${FR2TCH_OBJS} | 19 ${CC} ${CFLAGS} -o $@ ${FR2TCH_OBJS} |
20 | 20 |
21 fc-gsm2vm: ${GSM2VM_OBJS} | 21 fc-gsm2vm: ${GSM2VM_OBJS} |
22 ${CC} ${CFLAGS} -o $@ ${GSM2VM_OBJS} | 22 ${CC} ${CFLAGS} -o $@ ${GSM2VM_OBJS} |
23 | |
24 fc-pulse-dtr: fc-pulse-dtr.c | |
25 ${CC} ${CFLAGS} -o $@ $@.c | |
26 | |
27 fc-pulse-rts: fc-pulse-rts.c | |
28 ${CC} ${CFLAGS} -o $@ $@.c | |
23 | 29 |
24 fc-rgbconv: fc-rgbconv.c | 30 fc-rgbconv: fc-rgbconv.c |
25 ${CC} ${CFLAGS} -o $@ $@.c | 31 ${CC} ${CFLAGS} -o $@ $@.c |
26 | 32 |
27 fc-serterm: ${SERTERM_OBJS} | 33 fc-serterm: ${SERTERM_OBJS} |