view rvinterf/lowlevel/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 d43dc6dfb44c
children a1065c17429c
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	rvtdump rvinterf tfc139
LIBS=	../../libserial/libserial.a ../libg23/libg23.a
LIBPWON=../../libpwon/libpwon.a

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

RVTDUMP_OBJS=	format.o format_fc.o output.o packetrx.o rvtdump.o

RVINTERF_OBJS=	clientcmd.o format.o format_fc.o localsock.o logsent.o \
		output.o packetrx.o packettx.o pktfwd.o rviflcd.o \
		rvifmain.o

TFC139_OBJS=	format.o output.o packetrx.o packettx.o tfc139.o

all:	${PROGS}

rvtdump:	${RVTDUMP_OBJS} ${LIBS}
	${CC} ${CFLAGS} -o $@ ${RVTDUMP_OBJS} ${LIBS}

rvinterf:	${RVINTERF_OBJS} ${LIBS} ${LIBPWON}
	${CC} ${CFLAGS} -o $@ ${RVINTERF_OBJS} ${LIBS} ${LIBPWON}

tfc139:		${TFC139_OBJS} ${LIBS}
	${CC} ${CFLAGS} -o $@ ${TFC139_OBJS} ${LIBS}

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

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