FreeCalypso > hg > freecalypso-tools
view ffstools/Makefile @ 607:d5abcbbf7432
scripts/gtm900[bp]-ffs-clean: remove some more wrong files
An earlier version of GTM900-B firmware has been found in the wild that
still has MFW&BMI layers included (producing files under /mmi), as well as
enlarged /pcm/L[DMR]N files. These files are wrong for FreeCalypso fw
and thus need to be cleaned out.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 11 Feb 2020 21:27:40 +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: