FreeCalypso > hg > rtp-debug-utils
diff pcm-study/Makefile @ 11:8b047c9bfe5f
g711u-grep-gsmout program written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 15 May 2024 02:31:01 +0000 |
parents | net-traffic/Makefile@e686bc92c7d8 |
children | b5e73d5ebcd1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pcm-study/Makefile Wed May 15 02:31:01 2024 +0000 @@ -0,0 +1,15 @@ +PROGS= g711u-grep-gsmout + +include ../config.defs + +all: ${PROGS} + +g711u-grep-gsmout: g711u-grep-gsmout.c + ${CC} ${CFLAGS} -o $@ $@.c + +install: + mkdir -p ${DESTDIR}${bindir} + install -c ${PROGS} ${DESTDIR}${bindir} + +clean: + rm -f *.o *.out ${PROGS}