FreeCalypso > hg > gsm-codec-lib
comparison hrutil/Makefile @ 557:129c895a0564
hrutil: new program gsmhr-cod2hex
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 06 Feb 2025 08:38:27 +0000 |
parents | 087a88d25ba2 |
children | 707d6f7a54dc |
comparison
equal
deleted
inserted
replaced
556:18aca50d68df | 557:129c895a0564 |
---|---|
1 PROGS= gsmhr-cod-parse gsmhr-dec-craft gsmhr-dec-parse | 1 PROGS= gsmhr-cod-parse gsmhr-cod2hex gsmhr-dec-craft gsmhr-dec-parse |
2 LIBHR1= ../libgsmhr1/libgsmhr1.a | 2 LIBHR1= ../libgsmhr1/libgsmhr1.a |
3 LIBTEST=../libtest/libtest.a | |
3 | 4 |
4 include ../config.defs | 5 include ../config.defs |
5 | 6 |
6 all: ${PROGS} | 7 all: ${PROGS} |
7 | 8 |
8 gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} | 9 gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} |
10 ${CC} ${CFLAGS} -o $@ $^ | |
11 | |
12 gsmhr-cod2hex: cod2hex.o read-cod.o tw5b-out-cod.o ${LIBHR1} ${LIBTEST} | |
9 ${CC} ${CFLAGS} -o $@ $^ | 13 ${CC} ${CFLAGS} -o $@ $^ |
10 | 14 |
11 gsmhr-dec-craft: dec-craft.o ${LIBHR1} | 15 gsmhr-dec-craft: dec-craft.o ${LIBHR1} |
12 ${CC} ${CFLAGS} -o $@ $^ | 16 ${CC} ${CFLAGS} -o $@ $^ |
13 | 17 |