FreeCalypso > hg > gsm-codec-lib
view hrutil/Makefile @ 556:18aca50d68df default tip
doc/Calypso-TCH-downlink: update for FR1 BFI-with-data
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 11 Oct 2024 01:54:00 +0000 |
parents | 087a88d25ba2 |
children |
line wrap: on
line source
PROGS= gsmhr-cod-parse gsmhr-dec-craft gsmhr-dec-parse LIBHR1= ../libgsmhr1/libgsmhr1.a include ../config.defs all: ${PROGS} gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} ${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 ${LIBHR1} ${CC} ${CFLAGS} -o $@ $^ install: mkdir -p ${DESTDIR}${bindir} install -c ${PROGS} ${DESTDIR}${bindir} clean: rm -f *.o *.out ${PROGS}