annotate pcap/Makefile @ 205:17f690749099

libgsmefr decoder: TAF is a Boolean flag, so compare against 0, not against 1
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 04 Jan 2023 06:43:53 +0000
parents 9bd01faadaed
children
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
175
9bd01faadaed rtp-g711-extr program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 172
diff changeset
3 PROGS= rtp-cont-check rtp-g711-extr 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
175
9bd01faadaed rtp-g711-extr program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 172
diff changeset
11 rtp-g711-extr: rtp-g711-extr.c
9bd01faadaed rtp-g711-extr program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 172
diff changeset
12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
9bd01faadaed rtp-g711-extr program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 172
diff changeset
13
15
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 rtp-gsmfr-extr: rtp-gsmfr-extr.c
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
172
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
17 rtp-jitter-view: rtp-jitter-view.c
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
18 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
693a0958a303 yet another refactoring of RTP tools:
Mychaela Falconia <falcon@freecalypso.org>
parents: 170
diff changeset
19
18
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
20 install:
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
21 mkdir -p ${INSTBIN}
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
22 install -c ${PROGS} ${INSTBIN}
39dbaccc349d pcap/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
23
15
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 clean:
851ca64e38e9 rtp-gsmfr-extr program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 rm -f *.o *.out ${PROGS}