view rvinterf/lowlevel/Makefile @ 437:2cd705c8116e

loadtools: Mot C155 turns out to have the same flash partition quirks as the flash chip on TI's D-Sample c155.config changed to use the fixed 28f640w30b config instead of CFI, and a bit of C code in fc-loadtool had to be changed too so that flash erase-program-boot still works.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 06 Nov 2018 16:02:23 +0000
parents 6f078c4a5506
children 90d7c360a614
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	rvtdump rvinterf tfc139
INSTBIN=/opt/freecalypso/bin
LIBS=	../../libserial/libserial.a ../libg23/libg23.a

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}
	${CC} ${CFLAGS} -o $@ ${RVINTERF_OBJS} ${LIBS}

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}