view Makefile @ 995:74024eb17e04

fc-loadtool help: improve language regarding 16 MiB flash chips In FC project history, 16 MiB flash originally meant Pirelli DP-L10. Then we got FCDEV3B with the same flash (our own design), but now we are discovering more Calypso devices that used such large flash, both late Calypso era (Sony Ericsson K2x0) as well as much earlier ones (FIC FLUID devices.txt file with 2004 dates, Leonardo+ rev 5). Hence we need to migrate to more generic or neutral language in associated documentation, without giving elevated status to specific examples that drove our early project history.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 03 Dec 2023 21:11:12 +0000
parents 8ddb16a37273
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGDIR=ffstools loadtools miscutil ringtools rvinterf tchtools uptools
LIBDIR=	libpwon librftab libserial
SUBDIR=	${PROGDIR} ${LIBDIR}

INSTALL_PREFIX=	/opt/freecalypso

all:	${SUBDIR}

ffstools:	librftab
loadtools:	libpwon libserial
miscutil:	libserial
rvinterf:	libpwon librftab libserial
uptools:	libserial

${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
	mkdir -p ${INSTALL_PREFIX}
	for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \
		INSTALL_PREFIX=${INSTALL_PREFIX} install); done
	mkdir -p ${INSTALL_PREFIX}/scripts
	install -c -m 644 scripts/* ${INSTALL_PREFIX}/scripts
	if [ -d target-bin ]; then \
		mkdir -p ${INSTALL_PREFIX}/target-bin; \
		install -c -m 644 target-bin/* ${INSTALL_PREFIX}/target-bin; \
	fi

FRC: