annotate pcap/Makefile @ 172:693a0958a303

yet another refactoring of RTP tools: the program that prints each time delta is now rtp-jitter-view, whereas rtp-cont-check now reports min and max instead.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 26 Dec 2022 22:42:41 +0000
parents b9af126bfddb
children 9bd01faadaed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
172
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
3 PROGS= rtp-cont-check rtp-gsmfr-extr rtp-jitter-view
18
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
4 INSTBIN=/opt/freecalypso/bin
15
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${PROGS}
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
170
b9af126bfddb rtp-cont-check utility written
Mychaela Falconia <falcon@freecalypso.org>
parents: 18
diff changeset
8 rtp-cont-check: rtp-cont-check.c
b9af126bfddb rtp-cont-check utility written
Mychaela Falconia <falcon@freecalypso.org>
parents: 18
diff changeset
9 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
b9af126bfddb rtp-cont-check utility written
Mychaela Falconia <falcon@freecalypso.org>
parents: 18
diff changeset
10
15
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 rtp-gsmfr-extr: rtp-gsmfr-extr.c
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13
172
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
14 rtp-jitter-view: rtp-jitter-view.c
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
15 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
16
18
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
17 install:
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
18 mkdir -p ${INSTBIN}
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
19 install -c ${PROGS} ${INSTBIN}
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
20
15
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 clean:
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 rm -f *.o *.out ${PROGS}