view rvinterf/lowlevel/Makefile @ 412:a5dab452be0d

mokosrec2bin utility imported from the old freecalypso-reveng tree, header comments changed for new understanding and new usage in forward rather than reverse engineering
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 25 Oct 2018 19:23:35 +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}