FreeCalypso > hg > gsm-codec-lib
diff hrutil/Makefile @ 568:0affb05c2ce2
hrutil: new program gsmhr-dec2hex
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Feb 2025 03:29:52 +0000 |
parents | 2fcb6b27ee9b |
children | b4c4ed4b1b91 |
line wrap: on
line diff
--- a/hrutil/Makefile Wed Feb 12 02:32:21 2025 +0000 +++ b/hrutil/Makefile Wed Feb 12 03:29:52 2025 +0000 @@ -1,5 +1,5 @@ PROGS= gsmhr-cod-parse gsmhr-cod2hex gsmhr-dec-craft gsmhr-dec-parse \ - gsmhr-hex2dec gsmhr-hex2rpf gsmhr-rpf2hex tw5b-dump + gsmhr-dec2hex gsmhr-hex2dec gsmhr-hex2rpf gsmhr-rpf2hex tw5b-dump LIBHR1= ../libgsmhr1/libgsmhr1.a LIBTEST=../libtest/libtest.a LIBS= ${LIBHR1} ${LIBTEST} @@ -20,6 +20,9 @@ gsmhr-dec-parse: dec-parse.o print-frame.o read-dec.o ${LIBS} ${CC} ${CFLAGS} -o $@ $^ +gsmhr-dec2hex: dec2hex.o read-dec.o ${LIBS} + ${CC} ${CFLAGS} -o $@ $^ + gsmhr-hex2dec: hex2dec.o ${LIBS} ${CC} ${CFLAGS} -o $@ $^