FreeCalypso > hg > themwi-system-sw
comparison utils/Makefile @ 221:e1d7db9d734c
smpp-test2 program written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 03 Aug 2023 10:00:33 -0800 |
parents | 211a043a385f |
children | 28441920fb35 |
comparison
equal
deleted
inserted
replaced
220:c798a1762c7c | 221:e1d7db9d734c |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= sip-out-test sip-rx-test sip-udp-dump themwi-check-own \ | 3 PROGS= sip-out-test sip-rx-test sip-udp-dump themwi-check-own \ |
4 themwi-dump-numdb themwi-short-dial themwi-update-numdb \ | 4 themwi-dump-numdb themwi-short-dial themwi-update-numdb \ |
5 themwi-update-outrt | 5 themwi-update-outrt |
6 NOINST= rtp-alloc-test smpp-test1 tcpserv-dump | 6 NOINST= rtp-alloc-test smpp-test1 smpp-test2 tcpserv-dump |
7 LIBNUMDB=../libnumdb/libnumdb.a | 7 LIBNUMDB=../libnumdb/libnumdb.a |
8 LIBRTPA=../librtpalloc/librtpalloc.a | 8 LIBRTPA=../librtpalloc/librtpalloc.a |
9 LIBSIP= ../libsip/libsip.a | 9 LIBSIP= ../libsip/libsip.a |
10 LIBUTIL=../libutil/libutil.a | 10 LIBUTIL=../libutil/libutil.a |
11 INSTBIN=/usr/local/bin | 11 INSTBIN=/usr/local/bin |
23 | 23 |
24 sip-udp-dump: sip-udp-dump.c | 24 sip-udp-dump: sip-udp-dump.c |
25 ${CC} ${CFLAGS} -o $@ $@.c | 25 ${CC} ${CFLAGS} -o $@ $@.c |
26 | 26 |
27 smpp-test1: smpp-test1.c | 27 smpp-test1: smpp-test1.c |
28 ${CC} ${CFLAGS} -o $@ $@.c | |
29 | |
30 smpp-test2: smpp-test2.c | |
28 ${CC} ${CFLAGS} -o $@ $@.c | 31 ${CC} ${CFLAGS} -o $@ $@.c |
29 | 32 |
30 tcpserv-dump: tcpserv-dump.c | 33 tcpserv-dump: tcpserv-dump.c |
31 ${CC} ${CFLAGS} -o $@ $@.c | 34 ${CC} ${CFLAGS} -o $@ $@.c |
32 | 35 |