FreeCalypso > hg > gsm-net-reveng
comparison trau-files/Makefile @ 7:0cb57782715e
trau-files: generate human-readable dumps
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 24 May 2024 18:53:28 +0000 |
parents | |
children | cdfeb81350f5 |
comparison
equal
deleted
inserted
replaced
6:50f73e4d09e8 | 7:0cb57782715e |
---|---|
1 EFR_BIN= e1_ts2_efr.bin | |
2 FR1_BIN= e1_ts2_fr.bin | |
3 PARSE_TOOL= ../trau-decode/trau-parse | |
4 | |
5 DUMPS= fr-leg1.dump fr-leg2.dump efr-leg1.dump efr-leg2.dump | |
6 | |
7 all: ${DUMPS} | |
8 | |
9 fr-leg1.dump: ${FR1_BIN} ${PARSE_TOOL} | |
10 ${PARSE_TOOL} ${FR1_BIN} 1 > $@ | |
11 | |
12 fr-leg2.dump: ${FR1_BIN} ${PARSE_TOOL} | |
13 ${PARSE_TOOL} ${FR1_BIN} 2 > $@ | |
14 | |
15 efr-leg1.dump: ${EFR_BIN} ${PARSE_TOOL} | |
16 ${PARSE_TOOL} ${EFR_BIN} 1 > $@ | |
17 | |
18 efr-leg2.dump: ${EFR_BIN} ${PARSE_TOOL} | |
19 ${PARSE_TOOL} ${EFR_BIN} 2 > $@ | |
20 | |
21 clean: | |
22 rm -f *.dump |