FreeCalypso > hg > themwi-system-sw
view sip-in/Makefile @ 104:ce3b1db7d1d7
sip-in: force-pcma-codec config option to use PCMA when both are offered
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 27 Sep 2022 21:52:07 -0800 |
parents | 915f0f397fb6 |
children | 9213ec8b434b |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= themwi-sip-in OBJS= bye_in.o bye_out.o call_list.o call_setup.o cancel.o disconnect.o \ invite.o main.o mgw_ops.o mgw_sock.o mncc_handle.o mncc_sock.o \ readconf.o retrans.o sip_ack.o sip_log.o sip_uas.o sip_udp.o LIBS= ../libnumdb/libnumdb.a ../libsip/libsip.a ../libutil/libutil.a INSTBIN=/usr/local/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: install -c -o bin -g bin -m 755 ${PROG} ${INSTBIN} clean: rm -f *.o ${PROG} errs