FreeCalypso > hg > gsm-codec-lib
view frtest/Makefile @ 13:30d1d0a705c0
libtest: add WAV reader helper functions
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 20 Nov 2022 01:34:57 +0000 |
parents | f88817a233fb |
children | 69ed7af28473 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= gsmfr-decode LIBS= ../libtest/libtest.a ../libgsmfrp/libgsmfrp.a all: ${PROGS} gsmfr-decode: decode.o ${LIBS} ${CC} ${CFLAGS} -o $@ decode.o ${LIBS} -lgsm clean: rm -f *.o *.out ${PROGS}