FreeCalypso > hg > themwi-system-sw
annotate Makefile @ 41:e57bc4c885a7
top Makefile: add libsip
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 04 Sep 2022 16:35:16 -0800 |
parents | 2b072ad13de6 |
children | 891ebfb55e6b |
rev | line source |
---|---|
5 | 1 CC= gcc |
2 CFLAGS= -O2 | |
3 | |
33
2b072ad13de6
top Makefile: add mgw
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
4 PROGDIR=mgw mncc mtctest utils |
41
e57bc4c885a7
top Makefile: add libsip
Mychaela Falconia <falcon@freecalypso.org>
parents:
33
diff
changeset
|
5 LIBDIR= libnumdb libsip libutil |
5 | 6 SUBDIR= ${PROGDIR} ${LIBDIR} |
7 | |
8 all: ${SUBDIR} | |
9 | |
33
2b072ad13de6
top Makefile: add mgw
Mychaela Falconia <falcon@freecalypso.org>
parents:
22
diff
changeset
|
10 mgw: libutil |
22
7a9eb3df14e6
top Makefile: add mtctest
Mychaela Falconia <falcon@freecalypso.org>
parents:
16
diff
changeset
|
11 mncc: libnumdb libutil |
7a9eb3df14e6
top Makefile: add mtctest
Mychaela Falconia <falcon@freecalypso.org>
parents:
16
diff
changeset
|
12 mtctest: libnumdb libutil |
7a9eb3df14e6
top Makefile: add mtctest
Mychaela Falconia <falcon@freecalypso.org>
parents:
16
diff
changeset
|
13 utils: libnumdb libutil |
5 | 14 |
15 ${SUBDIR}: FRC | |
16 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" | |
17 | |
18 clean: FRC | |
19 rm -f a.out core errs | |
20 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
21 | |
22 install: FRC | |
23 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done | |
24 | |
25 FRC: |