FreeCalypso > hg > sipout-test-utils
annotate Makefile @ 6:ba66d297fe57
test-fsk: first attempt at modem Rx
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 04 Mar 2024 23:21:07 -0800 |
| parents | 26383ed8b79f |
| children | ff535725e01f |
| rev | line source |
|---|---|
| 1 | 1 CC= gcc |
| 2 CFLAGS= -O2 | |
| 3 | |
|
2
26383ed8b79f
test-fsk: starting as a copy of test-voice
Mychaela Falconia <falcon@freecalypso.org>
parents:
1
diff
changeset
|
4 PROGDIR=test-fsk test-voice |
| 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 |
| 1 | 11 test-voice: librtpalloc libsip libutil |
| 12 | |
| 13 ${SUBDIR}: FRC | |
| 14 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" | |
| 15 | |
| 16 clean: FRC | |
| 17 rm -f a.out core errs | |
| 18 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
| 19 | |
| 20 install: FRC | |
| 21 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
| 22 | |
| 23 FRC: |
