FreeCalypso > hg > gsm-codec-lib
diff frtest/Makefile @ 12:f88817a233fb
gsmfr-decode test program written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 20 Nov 2022 00:44:26 +0000 |
parents | |
children | 69ed7af28473 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/frtest/Makefile Sun Nov 20 00:44:26 2022 +0000 @@ -0,0 +1,12 @@ +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}