view trau-files/Makefile @ 10:4d1732e4a143

trau-parse: frame offsets were reported off by one byte
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 24 May 2024 19:59:06 +0000
parents 0cb57782715e
children cdfeb81350f5
line wrap: on
line source

EFR_BIN=	e1_ts2_efr.bin
FR1_BIN=	e1_ts2_fr.bin
PARSE_TOOL=	../trau-decode/trau-parse

DUMPS=	fr-leg1.dump fr-leg2.dump efr-leg1.dump efr-leg2.dump

all:	${DUMPS}

fr-leg1.dump:	${FR1_BIN} ${PARSE_TOOL}
	${PARSE_TOOL} ${FR1_BIN} 1 > $@

fr-leg2.dump:	${FR1_BIN} ${PARSE_TOOL}
	${PARSE_TOOL} ${FR1_BIN} 2 > $@

efr-leg1.dump:	${EFR_BIN} ${PARSE_TOOL}
	${PARSE_TOOL} ${EFR_BIN} 1 > $@

efr-leg2.dump:	${EFR_BIN} ${PARSE_TOOL}
	${PARSE_TOOL} ${EFR_BIN} 2 > $@

clean:
	rm -f *.dump