FreeCalypso > hg > freecalypso-tools
view ffstools/Makefile @ 678:f2a023c20653
doc/Loadtools-performance: removed the section about SREC programming
With our current fc-loadtool there is no difference in performance between
different flash programming commands, and the explanation of binary vs.
S-record issues has been moved to the new Binary-file-formats and
Flash-programming articles.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 08 Mar 2020 22:56:31 +0000 |
parents | f2a040324509 |
children | 850bf712c1fc |
line wrap: on
line source
CC= gcc CFLAGS= -O2 SUBDIR= cal2text caltools newcomp tiaud tiffs-rd tiffs-wrappers INSTALL_PREFIX= /opt/freecalypso all: ${SUBDIR} ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" clean: FRC rm -f a.out core errs for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done install: FRC for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \ INSTALL_PREFIX=${INSTALL_PREFIX} install); done FRC: