FreeCalypso > hg > sipout-test-utils
annotate Makefile @ 12:372be50488d6
add README
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 11 Mar 2024 12:45:09 -0800 |
parents | 3c5734b88c20 |
children | f7321b25195e |
rev | line source |
---|---|
1 | 1 CC= gcc |
2 CFLAGS= -O2 | |
3 | |
10
3c5734b88c20
sipout-test-v22 put together
Mychaela Falconia <falcon@freecalypso.org>
parents:
9
diff
changeset
|
4 PROGDIR=test-fsk test-v22 test-voice tone-detect |
1 | 5 LIBDIR= librtpalloc libsip libutil |
6 SUBDIR= ${PROGDIR} ${LIBDIR} | |
7 | |
8 all: ${SUBDIR} | |
9 | |
2
26383ed8b79f
test-fsk: starting as a copy of test-voice
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
10 test-fsk: librtpalloc libsip libutil |
10
3c5734b88c20
sipout-test-v22 put together
Mychaela Falconia <falcon@freecalypso.org>
parents:
9
diff
changeset
|
11 test-v22: librtpalloc libsip libutil |
1 | 12 test-voice: librtpalloc libsip libutil |
13 | |
14 ${SUBDIR}: FRC | |
15 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" | |
16 | |
17 clean: FRC | |
18 rm -f a.out core errs | |
19 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
20 | |
21 install: FRC | |
22 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
23 | |
24 FRC: |