FreeCalypso > hg > themwi-system-sw
view Makefile @ 152:7176dc850d7a
sip-in hold/retr error handling: simply send BYE
Because we know that the SIP state is CONNECTED at the time of any
such error event, we can call initiate_bye() instead of disconnect_sip(),
and thereby get rid of struct gsm_mncc_cause which will never be used
in this scenario anyway.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 11 Oct 2022 16:11:21 -0800 |
parents | f05183b18d29 |
children | 8adcd220c6cf |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGDIR=mgw mncc mtctest sip-in sip-manual-out utils LIBDIR= libnumdb liboutrt libsip libutil SUBDIR= ${PROGDIR} ${LIBDIR} all: ${SUBDIR} mgw: libutil mncc: libnumdb libutil mtctest: libnumdb libutil sip-in: libnumdb libsip libutil sip-manual-out: libsip libutil utils: libnumdb libsip libutil ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" clean: FRC rm -f a.out core errs for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done install: FRC for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done FRC: