view miscutil/Makefile @ 752:c79aaed75bd8

compile-fc-batt: allow possible third field in source lines Battery tables maintained in the fc-battery-conf repository will now have a third field added, defining thresholds for the battery bars icon, and there will be a new utility to compile them into the new /etc/batterytab2 file read by the FC Tourmaline version of our FCHG driver. For backward compatibility with the original Magnetite version of FCHG, compile-fc-batt remains the tool for compiling the original /etc/batterytab file format, and it needs to ignore the newly added third field in battery table sources.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 05 Nov 2020 20:37:55 +0000
parents 2dcfad8a3ed0
children b8cb116a7dc7
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-fr2tch fc-gsm2vm fc-pulse-dtr fc-pulse-rts fc-rgbconv fc-serterm \
	fc-tch2fr fc-vm2hex imei-luhn make-imeisv mokosrec2bin srec-regions
SCRIPTS=c139explore pirexplore

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

all:	${PROGS}

FR2TCH_OBJS=	fc-fr2tch.o gsm0610.o
GSM2VM_OBJS=	fc-gsm2vm.o gsm0610.o
TCH2FR_OBJS=	fc-tch2fr.o gsm0610.o
SERTERM_OBJS=	fc-serterm.o ttypassthru.o ../libserial/libserial.a

fc-fr2tch:	${FR2TCH_OBJS}
	${CC} ${CFLAGS} -o $@ ${FR2TCH_OBJS}

fc-gsm2vm:	${GSM2VM_OBJS}
	${CC} ${CFLAGS} -o $@ ${GSM2VM_OBJS}

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 $@ $<

fc-tch2fr:	${TCH2FR_OBJS}
	${CC} ${CFLAGS} -o $@ ${TCH2FR_OBJS}

fc-vm2hex:	fc-vm2hex.c
	${CC} ${CFLAGS} -o $@ $@.c

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

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${SCRIPTS} ${INSTBIN}

clean:
	rm -f ${PROGS} *.o *errs *.out