diff pcap/Makefile @ 15:851ca64e38e9

rtp-gsmfr-extr program written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 20 Nov 2022 04:15:44 +0000
parents
children 39dbaccc349d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/pcap/Makefile	Sun Nov 20 04:15:44 2022 +0000
@@ -0,0 +1,11 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	rtp-gsmfr-extr
+
+all:	${PROGS}
+
+rtp-gsmfr-extr:	rtp-gsmfr-extr.c
+	${CC} ${CFLAGS} -o $@ $@.c -lpcap
+
+clean:
+	rm -f *.o *.out ${PROGS}