comparison Makefile @ 1:41eba040785a

rtp-tfo-trace program written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 02 Apr 2023 05:36:35 +0000
parents 05ff0f7ac977
children 50aa973a91ef
comparison
equal deleted inserted replaced
0:05ff0f7ac977 1:41eba040785a
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view 3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view \
4 rtp-tfo-trace
4 INSTBIN=/opt/freecalypso/bin 5 INSTBIN=/opt/freecalypso/bin
5 6
6 all: ${PROGS} 7 all: ${PROGS}
7 8
8 rtp-cont-check: rtp-cont-check.c 9 rtp-cont-check: rtp-cont-check.c
15 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 16 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
16 17
17 rtp-jitter-view: rtp-jitter-view.c 18 rtp-jitter-view: rtp-jitter-view.c
18 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 19 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
19 20
21 rtp-tfo-trace: rtp-tfo-trace.c
22 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
23
20 install: 24 install:
21 mkdir -p ${INSTBIN} 25 mkdir -p ${INSTBIN}
22 install -c ${PROGS} ${INSTBIN} 26 install -c ${PROGS} ${INSTBIN}
23 27
24 clean: 28 clean: