view trau-files/Makefile @ 9:0565aaa84b17

trau-decode: implement trau-extr program
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 24 May 2024 19:44:14 +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