diff utils/Makefile @ 17:4e0a73be9e37

sip-udp-dump utility written, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 26 Jun 2022 18:12:32 -0800
parents aea422af79dd
children 891ebfb55e6b
line wrap: on
line diff
--- a/utils/Makefile	Sun Jun 26 16:33:30 2022 -0800
+++ b/utils/Makefile	Sun Jun 26 18:12:32 2022 -0800
@@ -1,12 +1,16 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	themwi-check-own themwi-dump-numdb themwi-short-dial themwi-update-numdb
+PROGS=	sip-udp-dump themwi-check-own themwi-dump-numdb themwi-short-dial \
+	themwi-update-numdb
 LIBNUMDB=../libnumdb/libnumdb.a
 LIBUTIL=../libutil/libutil.a
 INSTBIN=/usr/local/bin
 
 all:	${PROGS}
 
+sip-udp-dump:	sip-udp-dump.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
 themwi-check-own:	themwi-check-own.o ${LIBNUMDB} ${LIBUTIL}
 	${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL}