FreeCalypso > hg > sipout-test-utils
annotate 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 |
rev | line source |
---|---|
0
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
10
3c5734b88c20
sipout-test-v22 put together
Mychaela Falconia <falcon@freecalypso.org>
parents:
6
diff
changeset
|
3 PROG= sipout-test-v22 |
3c5734b88c20
sipout-test-v22 put together
Mychaela Falconia <falcon@freecalypso.org>
parents:
6
diff
changeset
|
4 OBJS= bye_in.o disc_cmd.o main.o modem_func.o readconf.o reinvite.o rtp_rx.o \ |
6
ba66d297fe57
test-fsk: first attempt at modem Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
4
diff
changeset
|
5 rtp_tx.o sdp_in.o sip_log.o sip_udp.o uac.o uas.o user_cmd.o |
0
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 LIBS= ../libsip/libsip.a ../librtpalloc/librtpalloc.a ../libutil/libutil.a |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 INSTBIN=/opt/themwi/bin |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 all: ${PROG} |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 ${PROG}: ${OBJS} ${LIBS} |
4
030d52b96a23
test-fsk: implement SpanDSP Tx output
Mychaela Falconia <falcon@freecalypso.org>
parents:
2
diff
changeset
|
12 ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} -lspandsp -lm |
0
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 install: |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 install -c -m 755 ${PROG} ${INSTBIN} |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 clean: |
35c0d9f03c0a
beginning with sipout-test-voice,
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 rm -f *.o ${PROG} errs |