FreeCalypso > hg > sipout-test-utils
comparison test-v22/Makefile @ 10:3c5734b88c20
sipout-test-v22 put together
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 07 Mar 2024 02:33:49 -0800 |
parents | test-fsk/Makefile@ba66d297fe57 |
children | f7321b25195e |
comparison
equal
deleted
inserted
replaced
9:ff535725e01f | 10:3c5734b88c20 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= sipout-test-v22 | |
4 OBJS= bye_in.o disc_cmd.o main.o modem_func.o readconf.o reinvite.o rtp_rx.o \ | |
5 rtp_tx.o sdp_in.o sip_log.o sip_udp.o uac.o uas.o user_cmd.o | |
6 LIBS= ../libsip/libsip.a ../librtpalloc/librtpalloc.a ../libutil/libutil.a | |
7 INSTBIN=/opt/themwi/bin | |
8 | |
9 all: ${PROG} | |
10 | |
11 ${PROG}: ${OBJS} ${LIBS} | |
12 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} -lspandsp -lm | |
13 | |
14 install: | |
15 install -c -m 755 ${PROG} ${INSTBIN} | |
16 | |
17 clean: | |
18 rm -f *.o ${PROG} errs |