FreeCalypso > hg > vband-misc
diff ae-dec-dhf/Makefile @ 39:ab7c80f6f02d
ae-dec-dhf: initial generation
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 14 May 2024 08:13:01 +0000 |
parents | |
children | e38e8d0fba70 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ae-dec-dhf/Makefile Tue May 14 08:13:01 2024 +0000 @@ -0,0 +1,15 @@ +CC= gcc +CFLAGS= -O2 +PROG= gen-test-frames +FILES= test-frames.gsmx + +all: ${PROG} ${FILES} + +${PROG}: ${PROG}.c + ${CC} ${CFLAGS} -o $@ $@.c -lgsmefr -ltwamr + +test-frames.gsmx: ${PROG} + ./${PROG} $@ + +clean: + rm -f *.o ${PROG} *.robe *.ul *.gsmx