FreeCalypso > hg > gsm-codec-lib
view frtest/Makefile @ 15:851ca64e38e9
rtp-gsmfr-extr program written, compiles
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 20 Nov 2022 04:15:44 +0000 |
| parents | 69ed7af28473 |
| children | 68a7e86c9868 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= gsmfr-decode gsmfr-encode LIBPP= ../libgsmfrp/libgsmfrp.a LIBTEST=../libtest/libtest.a LIBDEC= ${LIBTEST} ${LIBPP} all: ${PROGS} gsmfr-decode: decode.o ${LIBDEC} ${CC} ${CFLAGS} -o $@ decode.o ${LIBDEC} -lgsm gsmfr-encode: encode.o ${LIBTEST} ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm clean: rm -f *.o *.out ${PROGS}
