comparison sip-out/Makefile @ 154:e54b0a9e322f

beginning of themwi-sip-out
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Oct 2022 23:04:01 -0800
parents sip-in/Makefile@99fd4ae573ae
children 2730ccb44549
comparison
equal deleted inserted replaced
153:99fd4ae573ae 154:e54b0a9e322f
1 CC= gcc
2 CFLAGS= -O2
3 PROG= themwi-sip-out
4 OBJS= call_clear.o call_list.o call_setup.o disconnect.o main.o mgw_ops.o \
5 mgw_resp.o mgw_sock.o mncc_sig_in.o mncc_sig_out.o mncc_sock.o \
6 readconf.o retrans.o shutdown.o sip_log.o sip_uas.o sip_udp.o uac_out.o
7 LIBS= ../liboutrt/liboutrt.a ../libsip/libsip.a ../libutil/libutil.a
8 INSTBIN=/usr/local/bin
9
10 all: ${OBJS}
11
12 ${PROG}: ${OBJS} ${LIBS}
13 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS}
14
15 install:
16 install -c -o bin -g bin -m 755 ${PROG} ${INSTBIN}
17
18 clean:
19 rm -f *.o ${PROG} errs