FreeCalypso > hg > freecalypso-tools
view miscutil/Makefile @ 926:6a0aa8d36d06
rvinterf backslash escape: introduce libprint
The new helper function library named libprint is meant to replace
the badly misnamed libg23, and will soon contain functions for
printing all of the same kinds of GPF TST packets that are now handled
in libg23. However, we are also moving safe_print_trace() from libasync
to this new library, and changing it to emit our new backslash escape
format.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 23 May 2023 03:47:46 +0000 |
parents | 8ddb16a37273 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= arfcn2ti fc-pulse-dtr fc-pulse-rts fc-rgbconv fc-serterm imei-luhn \ make-imeisv mokosrec2bin srec-regions ti2arfcn SCRIPTS=c139explore pirexplore INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROGS} SERTERM_OBJS= fc-serterm.o ttypassthru.o ../libserial/libserial.a arfcn2ti: arfcn2ti.c ${CC} ${CFLAGS} -o $@ $@.c fc-pulse-dtr: fc-pulse-dtr.c ${CC} ${CFLAGS} -o $@ $@.c fc-pulse-rts: fc-pulse-rts.c ${CC} ${CFLAGS} -o $@ $@.c fc-rgbconv: fc-rgbconv.c ${CC} ${CFLAGS} -o $@ $@.c fc-serterm: ${SERTERM_OBJS} ${CC} ${CFLAGS} -o $@ ${SERTERM_OBJS} ttypassthru.o: ../loadtools/ttypassthru.c ${CC} ${CFLAGS} -c -o $@ $< imei-luhn: imei-luhn.c ${CC} ${CFLAGS} -o $@ $@.c make-imeisv: make-imeisv.c ${CC} ${CFLAGS} -o $@ $@.c mokosrec2bin: mokosrec2bin.c ${CC} ${CFLAGS} -o $@ $@.c srec-regions: srec-regions.c ${CC} ${CFLAGS} -o $@ $@.c ti2arfcn: ti2arfcn.c ${CC} ${CFLAGS} -o $@ $@.c install: mkdir -p ${INSTBIN} install -c ${PROGS} ${SCRIPTS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out