FreeCalypso > hg > themwi-rtp-lib
annotate src/Makefile @ 32:aa97e77e7de6
implement RTCP Tx
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 08 Jul 2024 07:17:38 +0000 |
| parents | 284fcb5868e2 |
| children | c0ce22777694 |
| rev | line source |
|---|---|
|
29
3e01a71b7c7c
implement RTCP Rx
Mychaela Falconia <falcon@freecalypso.org>
parents:
24
diff
changeset
|
1 OBJS= bind_fdpair.o endp_bind.o endp_create.o endp_register.o rtcp_rx.o \ |
|
32
aa97e77e7de6
implement RTCP Tx
Mychaela Falconia <falcon@freecalypso.org>
parents:
31
diff
changeset
|
2 rtcp_tx.o rtp_rx.o rtp_tx.o set_remote.o set_sdes.o twjit.o twjit_in.o \ |
|
31
284fcb5868e2
implement SDES setting
Mychaela Falconia <falcon@freecalypso.org>
parents:
29
diff
changeset
|
3 twjit_out.o twjit_vty.o |
|
3
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 LIB= libtwrtp.a |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 include ../config.defs |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 |
|
13
19367028cc6e
src/Makefile: list -I../build-inc first
Mychaela Falconia <falcon@freecalypso.org>
parents:
7
diff
changeset
|
8 CPPFLAGS=-I../build-inc ${OSMO_INCLUDE} |
| 19 | 9 HDRS= ../include/endp.h ../include/twjit.h endp_internal.h |
|
3
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 all: ${LIB} |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 |
|
7
32cb5a2d1178
src/Makefile: add dependency on actively changing twjit.h
Mychaela Falconia <falcon@freecalypso.org>
parents:
5
diff
changeset
|
13 ${OBJS}: ${HDRS} |
|
32cb5a2d1178
src/Makefile: add dependency on actively changing twjit.h
Mychaela Falconia <falcon@freecalypso.org>
parents:
5
diff
changeset
|
14 |
|
3
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 ${LIB}: ${OBJS} |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 ar rcu $@ ${OBJS} |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 ranlib $@ |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 clean: |
|
d10ea5dc61b3
twjit: initial import from previous work repository
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 rm -f *.[oa] errs |
