FreeCalypso > hg > ice1-trau-tester
annotate Makefile @ 36:e4a0b4a61649
top Makefile: add pcm-br
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 28 Aug 2024 05:02:29 +0000 |
parents | cd7448724d74 |
children | 26c9535df39e |
rev | line source |
---|---|
36
e4a0b4a61649
top Makefile: add pcm-br
Mychaela Falconia <falcon@freecalypso.org>
parents:
31
diff
changeset
|
1 PROGDIR=abis ater pcm pcm-br |
3 | 2 LIBDIR= libutil |
3 SUBDIR= ${PROGDIR} ${LIBDIR} | |
4 DESTDIR= | |
5 | |
6 all: ${SUBDIR} | |
7 | |
31
cd7448724d74
top Makefile: add abis program subdir
Mychaela Falconia <falcon@freecalypso.org>
parents:
17
diff
changeset
|
8 abis: libutil |
17
42373f9992cc
top Makefile: add ater
Mychaela Falconia <falcon@freecalypso.org>
parents:
3
diff
changeset
|
9 ater: libutil |
3 | 10 pcm: libutil |
36
e4a0b4a61649
top Makefile: add pcm-br
Mychaela Falconia <falcon@freecalypso.org>
parents:
31
diff
changeset
|
11 pcm-br: libutil |
3 | 12 |
13 ${SUBDIR}: FRC config.defs | |
14 cd $@; ${MAKE} ${MFLAGS} | |
15 | |
16 config.defs: | |
17 @echo 'You must run ./configure before make' | |
18 @false | |
19 | |
20 clean: FRC | |
21 rm -f a.out core errs | |
22 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
23 | |
24 install: FRC | |
25 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \ | |
26 DESTDIR=${DESTDIR} install); done | |
27 | |
28 FRC: |