view Makefile @ 416:30f6d1c32c6f

doc/Flash-boot-defect article removed (no longer relevant) This article is no longer relevant because the issue in question only affected one (1) defective FCDEV3B board which was not and never will be sold.
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 26 Oct 2018 07:11:08 +0000
parents 940ab98efefd
children 8f3fe2d1fda5
line wrap: on
line source

PROGDIR=ffstools loadtools miscutil ringtools rvinterf uptools
LIBDIR=	librftab libserial
SUBDIR=	${PROGDIR} ${LIBDIR}

all:	${SUBDIR}

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

${SUBDIR}: FRC
	cd $@; ${MAKE} ${MFLAGS}

clean: FRC
	rm -f a.out core errs
	for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done

install: FRC
	mkdir -p /opt/freecalypso
	for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done
	if [ -d target-bin ]; then \
		mkdir -p /opt/freecalypso/target-bin; \
		install -c -m 644 target-bin/* /opt/freecalypso/target-bin; \
	fi

FRC: