annotate Makefile @ 17:2e21b551b971

top Makefile: fteeprom now depends on local libs
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 07 Sep 2023 08:58:16 +0000
parents e1629a7c8ae3
children c4b4ebaa2117
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
15
e1629a7c8ae3 top Makefile: add new local libraries
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
3 PROGDIR=eeproms fteeprom
e1629a7c8ae3 top Makefile: add new local libraries
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
4 LIBDIR= libftmini libuwrap
e1629a7c8ae3 top Makefile: add new local libraries
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
5 SUBDIR= ${PROGDIR} ${LIBDIR}
6
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 INSTALL_PREFIX= /opt/freecalypso
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 all: ${SUBDIR}
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
17
2e21b551b971 top Makefile: fteeprom now depends on local libs
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
11 fteeprom: libftmini libuwrap
2e21b551b971 top Makefile: fteeprom now depends on local libs
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
12
6
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 ${SUBDIR}: FRC
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}"
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 clean: FRC
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 rm -f a.out core errs
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 install: FRC
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 mkdir -p ${INSTALL_PREFIX}
15
e1629a7c8ae3 top Makefile: add new local libraries
Mychaela Falconia <falcon@freecalypso.org>
parents: 6
diff changeset
22 for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \
6
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 INSTALL_PREFIX=${INSTALL_PREFIX} install); done
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24
d4151cef9d95 add top Makefile
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 FRC: