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