view Makefile @ 3:50aa973a91ef

new program rtp-gsmfr-dump
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 16 Apr 2023 06:43:18 +0000
parents 41eba040785a
children 709aa9ad72d1
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-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-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}