FreeCalypso > hg > ice1-trau-tester
annotate Makefile @ 43:55f02d4aee79
top Makefile: add ater8
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 30 Aug 2024 19:04:57 +0000 |
parents | 50a72d4ff498 |
children |
rev | line source |
---|---|
43
55f02d4aee79
top Makefile: add ater8
Mychaela Falconia <falcon@freecalypso.org>
parents:
41
diff
changeset
|
1 PROGDIR=ater ater8 pcm pcm-br |
41
50a72d4ff498
top Makefile: add libhr
Mychaela Falconia <falcon@freecalypso.org>
parents:
37
diff
changeset
|
2 LIBDIR= libhr libutil |
3 | 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 |
43
55f02d4aee79
top Makefile: add ater8
Mychaela Falconia <falcon@freecalypso.org>
parents:
41
diff
changeset
|
9 ater8: libhr 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: |