view ringtools/Makefile @ 921:74d284add54d

fc-fsio: guard against bogus readdir results from the target If the FFS being operated on contains SE K2x0 extended filenames, readdir will return strings that are bad for printing. We need to guard against this possibility, and also against possible other bogosity that could be sent by other alien firmwares.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 31 Dec 2022 22:55:23 +0000
parents b8ecdf54a957
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-e1decode fc-e1gen fc-pwt-comp fc-ringlist-comp
SCRIPTS=fc-imyplay fc-meltest-e1 fc-meltest-pwt
SUBDIR=	imy

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

all:	${PROGS} ${SUBDIR}

${SUBDIR}: FRC
	cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}"

fc-e1decode:	fc-e1decode.c
	${CC} ${CFLAGS} -o $@ $@.c

fc-e1gen:	fc-e1gen.c
	${CC} ${CFLAGS} -o $@ $@.c

fc-pwt-comp:	fc-pwt-comp.c
	${CC} ${CFLAGS} -o $@ $@.c

fc-ringlist-comp:	fc-ringlist-comp.c
	${CC} ${CFLAGS} -o $@ $@.c

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${SCRIPTS} ${INSTBIN}
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \
		INSTALL_PREFIX=${INSTALL_PREFIX} install); done

clean:
	rm -f ${PROGS} *.o *errs *.out
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done

FRC: