comparison Makefile @ 0:05ff0f7ac977

initial commit: split from gsm-codec-lib
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 02 Apr 2023 00:28:28 +0000
parents
children 41eba040785a
comparison
equal deleted inserted replaced
-1:000000000000 0:05ff0f7ac977
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view
4 INSTBIN=/opt/freecalypso/bin
5
6 all: ${PROGS}
7
8 rtp-cont-check: rtp-cont-check.c
9 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
10
11 rtp-g711-extr: rtp-g711-extr.c
12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
13
14 rtp-gsmfr-extr: rtp-gsmfr-extr.c
15 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
16
17 rtp-jitter-view: rtp-jitter-view.c
18 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
19
20 install:
21 mkdir -p ${INSTBIN}
22 install -c ${PROGS} ${INSTBIN}
23
24 clean:
25 rm -f *.o *.out ${PROGS}