FreeCalypso > hg > themwi-system-sw
comparison sip-out/Makefile @ 165:9419fe55824f
themwi-sip-out complete to the point of compiling and linking
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Oct 2022 17:05:45 -0800 |
parents | bfa9f0c0f0ac |
children | cb440d003976 |
comparison
equal
deleted
inserted
replaced
164:baaa6c1a3d3b | 165:9419fe55824f |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROG= themwi-sip-out | 3 PROG= themwi-sip-out |
4 OBJS= bye_in.o call_clear.o call_list.o call_setup.o disconnect.o invite.o \ | 4 OBJS= bye_in.o call_clear.o call_list.o call_setup.o disconnect.o invite.o \ |
5 main.o mgw_ops.o mgw_resp.o mgw_sock.o mncc_sig_in.o mncc_sig_out.o \ | 5 main.o mgw_ops.o mgw_resp.o mgw_sock.o mncc_sig_in.o mncc_sig_out.o \ |
6 mncc_sock.o readconf.o retrans.o shutdown.o sip_log.o sip_uas.o \ | 6 mncc_sock.o readconf.o reinvite.o retrans.o shutdown.o sip_log.o \ |
7 sip_udp.o uac_out.o uac_resp.o | 7 sip_uas.o sip_udp.o uac_out.o uac_resp.o |
8 LIBS= ../liboutrt/liboutrt.a ../libsip/libsip.a ../libutil/libutil.a | 8 LIBS= ../liboutrt/liboutrt.a ../libsip/libsip.a ../libutil/libutil.a |
9 INSTBIN=/usr/local/bin | 9 INSTBIN=/usr/local/bin |
10 | 10 |
11 all: ${OBJS} | 11 all: ${PROG} |
12 | 12 |
13 ${PROG}: ${OBJS} ${LIBS} | 13 ${PROG}: ${OBJS} ${LIBS} |
14 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} | 14 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} |
15 | 15 |
16 install: | 16 install: |