annotate Makefile @ 11:8b047c9bfe5f

g711u-grep-gsmout program written
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 15 May 2024 02:31:01 +0000
parents e686bc92c7d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
8b047c9bfe5f g711u-grep-gsmout program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
1 SUBDIR= net-traffic pcap-study pcm-study
0
05ff0f7ac977 initial commit: split from gsm-codec-lib
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
10
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
3 all: ${SUBDIR}
0
05ff0f7ac977 initial commit: split from gsm-codec-lib
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4
10
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
5 ${SUBDIR}: FRC config.defs
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
6 cd $@; ${MAKE} ${MFLAGS}
0
05ff0f7ac977 initial commit: split from gsm-codec-lib
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
10
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
8 config.defs:
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
9 @echo 'You must run ./configure before make'
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
10 @false
8
d180987db615 new program rtp-stream-gen
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
11
10
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
12 install: FRC
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
13 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
14 DESTDIR=${DESTDIR} install); done
9
c00510e1ae8b new program udp-test-sink
Mychaela Falconia <falcon@freecalypso.org>
parents: 8
diff changeset
15
10
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
16 clean: FRC
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
17 rm -f a.out core errs
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
18 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
0
05ff0f7ac977 initial commit: split from gsm-codec-lib
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19
10
e686bc92c7d8 revamp for new subdir structure and configure script
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
20 FRC: