FreeCalypso > hg > themwi-system-sw
comparison utils/Makefile @ 52:ffb563a17f23
wrote sip-out-test program
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 08 Sep 2022 00:27:48 -0800 |
parents | 891ebfb55e6b |
children | 44dc809ffec0 |
comparison
equal
deleted
inserted
replaced
51:36a30349b490 | 52:ffb563a17f23 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= sip-rx-test sip-udp-dump themwi-check-own themwi-dump-numdb \ | 3 PROGS= sip-out-test sip-rx-test sip-udp-dump themwi-check-own \ |
4 themwi-short-dial themwi-update-numdb | 4 themwi-dump-numdb themwi-short-dial themwi-update-numdb |
5 LIBNUMDB=../libnumdb/libnumdb.a | 5 LIBNUMDB=../libnumdb/libnumdb.a |
6 LIBSIP= ../libsip/libsip.a | 6 LIBSIP= ../libsip/libsip.a |
7 LIBUTIL=../libutil/libutil.a | 7 LIBUTIL=../libutil/libutil.a |
8 INSTBIN=/usr/local/bin | 8 INSTBIN=/usr/local/bin |
9 | 9 |
10 all: ${PROGS} | 10 all: ${PROGS} |
11 | |
12 sip-out-test: sip-out-test.c | |
13 ${CC} ${CFLAGS} -o $@ $@.c | |
11 | 14 |
12 sip-rx-test: sip-rx-test.o ${LIBSIP} | 15 sip-rx-test: sip-rx-test.o ${LIBSIP} |
13 ${CC} ${CFLAGS} -o $@ $@.o ${LIBSIP} | 16 ${CC} ${CFLAGS} -o $@ $@.o ${LIBSIP} |
14 | 17 |
15 sip-udp-dump: sip-udp-dump.c | 18 sip-udp-dump: sip-udp-dump.c |