FreeCalypso > hg > themwi-system-sw
view sip-in/Makefile @ 48:8117d8ee44a5
sip-in: beginning of INVITE handling
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 06 Sep 2022 22:07:51 -0800 |
parents | 62f39c7cee15 |
children | 7005d5c535e8 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= themwi-sip-in OBJS= invite.o main.o mgw_sock.o readconf.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