FreeCalypso > hg > themwi-system-sw
annotate 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 | d74b545a3c2a |
children | f05183b18d29 |
rev | line source |
---|---|
5 | 1 CC= gcc |
2 CFLAGS= -O2 | |
3 | |
71
d74b545a3c2a
sip-manual-out: new test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
47
diff
changeset
|
4 PROGDIR=mgw mncc mtctest sip-in sip-manual-out utils |
41
e57bc4c885a7
top Makefile: add libsip
Mychaela Falconia <falcon@freecalypso.org>
parents:
33
diff
changeset
|
5 LIBDIR= libnumdb libsip libutil |
5 | 6 SUBDIR= ${PROGDIR} ${LIBDIR} |
7 | |
8 all: ${SUBDIR} | |
9 | |
33
2b072ad13de6
top Makefile: add mgw
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
10 mgw: libutil |
22
7a9eb3df14e6
top Makefile: add mtctest
Mychaela Falconia <falcon@freecalypso.org>
parents:
16
diff
changeset
|
11 mncc: libnumdb libutil |
7a9eb3df14e6
top Makefile: add mtctest
Mychaela Falconia <falcon@freecalypso.org>
parents:
16
diff
changeset
|
12 mtctest: libnumdb libutil |
47
62f39c7cee15
themwi-sip-in skeleton started
Mychaela Falconia <falcon@freecalypso.org>
parents:
42
diff
changeset
|
13 sip-in: libnumdb libsip libutil |
71
d74b545a3c2a
sip-manual-out: new test program
Mychaela Falconia <falcon@freecalypso.org>
parents:
47
diff
changeset
|
14 sip-manual-out: libsip libutil |
42
891ebfb55e6b
sip-rx-test program written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
41
diff
changeset
|
15 utils: libnumdb libsip libutil |
5 | 16 |
17 ${SUBDIR}: FRC | |
18 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" | |
19 | |
20 clean: FRC | |
21 rm -f a.out core errs | |
22 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
23 | |
24 install: FRC | |
25 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
26 | |
27 FRC: |