FreeCalypso > hg > themwi-system-sw
annotate Makefile @ 200:834656633fa0
sip-manual-out TFO: use is_hunt_fill mechanism
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sun, 02 Apr 2023 17:44:23 -0800 | 
| parents | 258932879f8b | 
| children | 9d6e8d99d2b1 | 
| rev | line source | 
|---|---|
| 5 | 1 CC= gcc | 
| 2 CFLAGS= -O2 | |
| 3 | |
| 181 
9ebd89257ae1
top Makefile: add rtp-mgr
 Mychaela Falconia <falcon@freecalypso.org> parents: 
166diff
changeset | 4 PROGDIR=mgw mncc mtctest rtp-mgr sip-in sip-manual-out sip-out utils | 
| 184 
f8c40090a0a8
librtpalloc: new library for talking to themwi-rtp-mgr
 Mychaela Falconia <falcon@freecalypso.org> parents: 
181diff
changeset | 5 LIBDIR= libnumdb liboutrt librtpalloc libsip libutil | 
| 5 | 6 SUBDIR= ${PROGDIR} ${LIBDIR} | 
| 7 | |
| 8 all: ${SUBDIR} | |
| 9 | |
| 33 
2b072ad13de6
top Makefile: add mgw
 Mychaela Falconia <falcon@freecalypso.org> parents: 
22diff
changeset | 10 mgw: libutil | 
| 22 
7a9eb3df14e6
top Makefile: add mtctest
 Mychaela Falconia <falcon@freecalypso.org> parents: 
16diff
changeset | 11 mncc: libnumdb libutil | 
| 
7a9eb3df14e6
top Makefile: add mtctest
 Mychaela Falconia <falcon@freecalypso.org> parents: 
16diff
changeset | 12 mtctest: libnumdb libutil | 
| 181 
9ebd89257ae1
top Makefile: add rtp-mgr
 Mychaela Falconia <falcon@freecalypso.org> parents: 
166diff
changeset | 13 rtp-mgr: libutil | 
| 47 
62f39c7cee15
themwi-sip-in skeleton started
 Mychaela Falconia <falcon@freecalypso.org> parents: 
42diff
changeset | 14 sip-in: libnumdb libsip libutil | 
| 187 
258932879f8b
sip-manual-out: rework for internal RTP handling, using themwi-rtp-mgr
 Mychaela Falconia <falcon@freecalypso.org> parents: 
185diff
changeset | 15 sip-manual-out: librtpalloc libsip libutil | 
| 166 
8adcd220c6cf
top Makefile: add sip-out
 Mychaela Falconia <falcon@freecalypso.org> parents: 
137diff
changeset | 16 sip-out: liboutrt libsip libutil | 
| 185 
857d78c58f56
rtp-alloc-test program written
 Mychaela Falconia <falcon@freecalypso.org> parents: 
184diff
changeset | 17 utils: libnumdb librtpalloc libsip libutil | 
| 5 | 18 | 
| 19 ${SUBDIR}: FRC | |
| 20 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" | |
| 21 | |
| 22 clean: FRC | |
| 23 rm -f a.out core errs | |
| 24 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
| 25 | |
| 26 install: FRC | |
| 27 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
| 28 | |
| 29 FRC: | 
