comparison Makefile @ 8:d180987db615

new program rtp-stream-gen
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 07 Mar 2024 22:39:41 +0000
parents 709aa9ad72d1
children c00510e1ae8b
comparison
equal deleted inserted replaced
7:9b0613775cf6 8:d180987db615
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-dump rtp-gsmfr-extr \ 3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-dump rtp-gsmfr-extr \
4 rtp-jitter-view rtp-stream-dump rtp-tfo-trace 4 rtp-jitter-view rtp-stream-dump rtp-stream-gen rtp-tfo-trace
5 INSTBIN=/opt/freecalypso/bin 5 INSTBIN=/opt/freecalypso/bin
6 6
7 all: ${PROGS} 7 all: ${PROGS}
8 8
9 rtp-cont-check: rtp-cont-check.c 9 rtp-cont-check: rtp-cont-check.c
22 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 22 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
23 23
24 rtp-stream-dump: rtp-stream-dump.c 24 rtp-stream-dump: rtp-stream-dump.c
25 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 25 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
26 26
27 rtp-stream-gen: rtp-stream-gen.c
28 ${CC} ${CFLAGS} -o $@ $@.c
29
27 rtp-tfo-trace: rtp-tfo-trace.c 30 rtp-tfo-trace: rtp-tfo-trace.c
28 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 31 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
29 32
30 install: 33 install:
31 mkdir -p ${INSTBIN} 34 mkdir -p ${INSTBIN}