FreeCalypso > hg > themwi-system-sw
annotate utils/Makefile @ 124:7e04d28fae8b
sip-in: default use-100rel to no
BulkVS servers act badly when we send a reliable 180 Ringing response
to an incoming call, even though they advertise 100rel support in
the Supported header in the INVITE packet, and we probably won't be
implementing 100rel for outbound because doing per-the-spec PRACK
as a UAC is just too burdensome. Therefore, we need to consider
100rel extension as not-really-supported in themwi-system-sw.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 01 Oct 2022 15:54:50 -0800 |
parents | ffb563a17f23 |
children | 44dc809ffec0 |
rev | line source |
---|---|
4
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
52
ffb563a17f23
wrote sip-out-test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
3 PROGS= sip-out-test sip-rx-test sip-udp-dump themwi-check-own \ |
ffb563a17f23
wrote sip-out-test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
4 themwi-dump-numdb themwi-short-dial themwi-update-numdb |
13
26b98505684e
themwi-check-own utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
6
diff
changeset
|
5 LIBNUMDB=../libnumdb/libnumdb.a |
42
891ebfb55e6b
sip-rx-test program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
6 LIBSIP= ../libsip/libsip.a |
4
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 LIBUTIL=../libutil/libutil.a |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 INSTBIN=/usr/local/bin |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 all: ${PROGS} |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 |
52
ffb563a17f23
wrote sip-out-test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
12 sip-out-test: sip-out-test.c |
ffb563a17f23
wrote sip-out-test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
13 ${CC} ${CFLAGS} -o $@ $@.c |
ffb563a17f23
wrote sip-out-test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
14 |
42
891ebfb55e6b
sip-rx-test program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
15 sip-rx-test: sip-rx-test.o ${LIBSIP} |
891ebfb55e6b
sip-rx-test program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
16 ${CC} ${CFLAGS} -o $@ $@.o ${LIBSIP} |
891ebfb55e6b
sip-rx-test program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
17 |
17
4e0a73be9e37
sip-udp-dump utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
18 sip-udp-dump: sip-udp-dump.c |
4e0a73be9e37
sip-udp-dump utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
19 ${CC} ${CFLAGS} -o $@ $@.c |
4e0a73be9e37
sip-udp-dump utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
14
diff
changeset
|
20 |
13
26b98505684e
themwi-check-own utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
6
diff
changeset
|
21 themwi-check-own: themwi-check-own.o ${LIBNUMDB} ${LIBUTIL} |
26b98505684e
themwi-check-own utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
6
diff
changeset
|
22 ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} |
26b98505684e
themwi-check-own utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
6
diff
changeset
|
23 |
6
030143a95fb5
themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
24 themwi-dump-numdb: themwi-dump-numdb.c |
030143a95fb5
themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
25 ${CC} ${CFLAGS} -o $@ $@.c |
030143a95fb5
themwi-dump-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
26 |
14
aea422af79dd
themwi-short-dial utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
13
diff
changeset
|
27 themwi-short-dial: themwi-short-dial.o ${LIBNUMDB} ${LIBUTIL} |
aea422af79dd
themwi-short-dial utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
13
diff
changeset
|
28 ${CC} ${CFLAGS} -o $@ $@.o ${LIBNUMDB} ${LIBUTIL} |
aea422af79dd
themwi-short-dial utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
13
diff
changeset
|
29 |
4
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
30 themwi-update-numdb: themwi-update-numdb.o ${LIBUTIL} |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
31 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUTIL} |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
32 |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
33 install: |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 install -c -o bin -g bin -m 755 ${PROGS} ${INSTBIN} |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
36 clean: |
4ad5deafaa87
themwi-update-numdb utility written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
37 rm -f *.o ${PROGS} errs |