annotate Makefile @ 2:26383ed8b79f

test-fsk: starting as a copy of test-voice
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 04 Mar 2024 21:03:19 -0800
parents 38c4d09882f6
children ff535725e01f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
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
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 LIBDIR= librtpalloc libsip libutil
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 SUBDIR= ${PROGDIR} ${LIBDIR}
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 all: ${SUBDIR}
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
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
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 test-voice: librtpalloc libsip libutil
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 ${SUBDIR}: FRC
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}"
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 clean: FRC
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 rm -f a.out core errs
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 install: FRC
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22
38c4d09882f6 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 FRC: