FreeCalypso > hg > gsm-codec-lib
view hrutil/Makefile @ 579:1dc5d9320e96
libgsmhr1: implement RxFE block
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 13 Feb 2025 09:10:12 +0000 |
parents | b4c4ed4b1b91 |
children | fc7a59deb3c3 |
line wrap: on
line source
PROGS= gsmhr-cod-craft gsmhr-cod-parse gsmhr-cod2hex gsmhr-dec-craft \ gsmhr-dec-parse gsmhr-dec2hex gsmhr-hex2dec gsmhr-hex2rpf gsmhr-rpf2hex\ tw5b-dump LIBHR1= ../libgsmhr1/libgsmhr1.a LIBTEST=../libtest/libtest.a LIBS= ${LIBHR1} ${LIBTEST} include ../config.defs all: ${PROGS} gsmhr-cod-craft: cod-craft.o ${LIBHR1} ${CC} ${CFLAGS} -o $@ $^ gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBS} ${CC} ${CFLAGS} -o $@ $^ gsmhr-cod2hex: cod2hex.o read-cod.o tw5b-out-cod.o ${LIBS} ${CC} ${CFLAGS} -o $@ $^ gsmhr-dec-craft: dec-craft.o ${LIBHR1} ${CC} ${CFLAGS} -o $@ $^ 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 $@ $^ gsmhr-hex2rpf: hex2rpf.o ${LIBS} ${CC} ${CFLAGS} -o $@ $^ gsmhr-rpf2hex: rpf2hex.o ${LIBHR1} ${CC} ${CFLAGS} -o $@ $^ tw5b-dump: print-frame.o tw5b-dump.o ${LIBS} ${CC} ${CFLAGS} -o $@ $^ install: mkdir -p ${DESTDIR}${bindir} install -c ${PROGS} ${DESTDIR}${bindir} clean: rm -f *.o *.out ${PROGS}