FreeCalypso > hg > freecalypso-tools
view ffstools/tiffs-rd/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 | 90d7c360a614 |
children | d68275d47a32 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= tiffs OBJS= basics.o cat.o globals.o inode.o ls.o main.o object.o tree.o xtr.o HDRS= globals.h pathname.h struct.h types.h INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} -o $@ ${OBJS} ${OBJS}: ${HDRS} install: ${PROG} mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f ${PROG} *.o *.out *errs