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