annotate Makefile @ 37:26c9535df39e

rm abis subdir: moved to e1-fake-trau repository The present code repository is meant to contain code for talking to a TRAU DUT, hence the name ice1-trau-tester. The different and separate function of talking to an E1 BTS (Abis instead of Ater, and in the opposite role) was never in scope for this project, but that code got added here in a haste when the InSite BTS arrived while the TRAU bring-up was still blocked. Now that we have our Nokia TCSM2 system working and are doing TRAU experiments, let's keep the code clean.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 29 Aug 2024 19:02:02 +0000
parents e4a0b4a61649
children 50a72d4ff498
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
37
26c9535df39e rm abis subdir: moved to e1-fake-trau repository
Mychaela Falconia <falcon@freecalypso.org>
parents: 36
diff changeset
1 PROGDIR=ater pcm pcm-br
3
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 LIBDIR= libutil
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 SUBDIR= ${PROGDIR} ${LIBDIR}
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 DESTDIR=
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 all: ${SUBDIR}
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
17
42373f9992cc top Makefile: add ater
Mychaela Falconia <falcon@freecalypso.org>
parents: 3
diff changeset
8 ater: libutil
3
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 pcm: libutil
36
e4a0b4a61649 top Makefile: add pcm-br
Mychaela Falconia <falcon@freecalypso.org>
parents: 31
diff changeset
10 pcm-br: libutil
3
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 ${SUBDIR}: FRC config.defs
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 cd $@; ${MAKE} ${MFLAGS}
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 config.defs:
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 @echo 'You must run ./configure before make'
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 @false
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 clean: FRC
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 rm -f a.out core errs
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 install: FRC
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 DESTDIR=${DESTDIR} install); done
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26
90e78243d367 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 FRC: