annotate Makefile @ 5:799b56cbccb6

EFR2 decoder: add post-processing step from AMR
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 03 Apr 2024 06:09:10 +0000
parents 5d7a6bc6960f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 SUBDIR= efr2 std
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 all: ${SUBDIR}
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 ${SUBDIR}: FRC
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 cd $@; ${MAKE} ${MFLAGS}
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 clean: FRC
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 rm -f a.out core errs
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
5d7a6bc6960f add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 FRC: