FreeCalypso > hg > themwi-system-sw
annotate Makefile @ 48:8117d8ee44a5
sip-in: beginning of INVITE handling
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Tue, 06 Sep 2022 22:07:51 -0800 | 
| parents | 62f39c7cee15 | 
| children | d74b545a3c2a | 
| rev | line source | 
|---|---|
| 5 | 1 CC= gcc | 
| 2 CFLAGS= -O2 | |
| 3 | |
| 47 
62f39c7cee15
themwi-sip-in skeleton started
 Mychaela Falconia <falcon@freecalypso.org> parents: 
42diff
changeset | 4 PROGDIR=mgw mncc mtctest sip-in utils | 
| 41 
e57bc4c885a7
top Makefile: add libsip
 Mychaela Falconia <falcon@freecalypso.org> parents: 
33diff
changeset | 5 LIBDIR= libnumdb 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 | 
| 47 
62f39c7cee15
themwi-sip-in skeleton started
 Mychaela Falconia <falcon@freecalypso.org> parents: 
42diff
changeset | 13 sip-in: libnumdb libsip libutil | 
| 42 
891ebfb55e6b
sip-rx-test program written, compiles
 Mychaela Falconia <falcon@freecalypso.org> parents: 
41diff
changeset | 14 utils: libnumdb libsip libutil | 
| 5 | 15 | 
| 16 ${SUBDIR}: FRC | |
| 17 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" | |
| 18 | |
| 19 clean: FRC | |
| 20 rm -f a.out core errs | |
| 21 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
| 22 | |
| 23 install: FRC | |
| 24 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
| 25 | |
| 26 FRC: | 
