view Makefile @ 6:709aa9ad72d1

new program rtp-stream-dump
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 08 Jul 2023 20:30:33 +0000
parents 50aa973a91ef
children d180987db615
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	rtp-cont-check rtp-g711-extr rtp-gsmfr-dump rtp-gsmfr-extr \
	rtp-jitter-view rtp-stream-dump rtp-tfo-trace
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

rtp-cont-check:	rtp-cont-check.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

rtp-g711-extr:	rtp-g711-extr.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

rtp-gsmfr-dump:	rtp-gsmfr-dump.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap -lgsmefr -lgsm

rtp-gsmfr-extr:	rtp-gsmfr-extr.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

rtp-jitter-view:	rtp-jitter-view.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

rtp-stream-dump:	rtp-stream-dump.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

rtp-tfo-trace:	rtp-tfo-trace.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

clean:
	rm -f *.o *.out ${PROGS}