FreeCalypso > hg > gsm-codec-lib
comparison 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 |
comparison
equal
deleted
inserted
replaced
11:a3aa152c4653 | 12:f88817a233fb |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= gsmfr-decode | |
4 LIBS= ../libtest/libtest.a ../libgsmfrp/libgsmfrp.a | |
5 | |
6 all: ${PROGS} | |
7 | |
8 gsmfr-decode: decode.o ${LIBS} | |
9 ${CC} ${CFLAGS} -o $@ decode.o ${LIBS} -lgsm | |
10 | |
11 clean: | |
12 rm -f *.o *.out ${PROGS} |