FreeCalypso > hg > themwi-system-sw
diff utils/Makefile @ 42:891ebfb55e6b
sip-rx-test program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 04 Sep 2022 17:55:40 -0800 |
parents | 4e0a73be9e37 |
children | ffb563a17f23 |
line wrap: on
line diff
--- a/utils/Makefile Sun Sep 04 16:35:16 2022 -0800 +++ b/utils/Makefile Sun Sep 04 17:55:40 2022 -0800 @@ -1,13 +1,17 @@ CC= gcc CFLAGS= -O2 -PROGS= sip-udp-dump themwi-check-own themwi-dump-numdb themwi-short-dial \ - themwi-update-numdb +PROGS= sip-rx-test sip-udp-dump themwi-check-own themwi-dump-numdb \ + themwi-short-dial themwi-update-numdb LIBNUMDB=../libnumdb/libnumdb.a +LIBSIP= ../libsip/libsip.a LIBUTIL=../libutil/libutil.a INSTBIN=/usr/local/bin all: ${PROGS} +sip-rx-test: sip-rx-test.o ${LIBSIP} + ${CC} ${CFLAGS} -o $@ $@.o ${LIBSIP} + sip-udp-dump: sip-udp-dump.c ${CC} ${CFLAGS} -o $@ $@.c