FreeCalypso > hg > themwi-system-sw
comparison sip-in/Makefile @ 264:cdc807117841
*/Makefile: change INSTBIN to /opt/themwi/bin (was /usr/local/bin)
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 05 Nov 2023 16:07:14 -0800 |
parents | e980fe9c186c |
children |
comparison
equal
deleted
inserted
replaced
263:1bf989f60aa3 | 264:cdc807117841 |
---|---|
4 OBJS= bye_in.o bye_out.o call_clear.o call_list.o call_setup.o cancel.o \ | 4 OBJS= bye_in.o bye_out.o call_clear.o call_list.o call_setup.o cancel.o \ |
5 disconnect.o invite_dup.o invite_init.o invite_resp.o main.o mgw_ops.o \ | 5 disconnect.o invite_dup.o invite_init.o invite_resp.o main.o mgw_ops.o \ |
6 mgw_resp.o mgw_sock.o mncc_handle.o mncc_sig_out.o mncc_sock.o prack.o \ | 6 mgw_resp.o mgw_sock.o mncc_handle.o mncc_sig_out.o mncc_sock.o prack.o \ |
7 readconf.o retrans.o shutdown.o sip_ack.o sip_log.o sip_uas.o sip_udp.o | 7 readconf.o retrans.o shutdown.o sip_ack.o sip_log.o sip_uas.o sip_udp.o |
8 LIBS= ../libnumdb2/libnumdb.a ../libsip/libsip.a ../libutil/libutil.a | 8 LIBS= ../libnumdb2/libnumdb.a ../libsip/libsip.a ../libutil/libutil.a |
9 INSTBIN=/usr/local/bin | 9 INSTBIN=/opt/themwi/bin |
10 | 10 |
11 all: ${PROG} | 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: |
17 install -c -o bin -g bin -m 755 ${PROG} ${INSTBIN} | 17 install -c -m 755 ${PROG} ${INSTBIN} |
18 | 18 |
19 clean: | 19 clean: |
20 rm -f *.o ${PROG} errs | 20 rm -f *.o ${PROG} errs |