view rvinterf/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 dd5bab5156bf
children 67d683a87b1d
line wrap: on
line source

PROGDIR=asyncshell ctracedec etmsync lowlevel rvtat tmsh
LIBDIR=	libasync libg23
SUBDIR=	${PROGDIR} ${LIBDIR}

INCLUDE_INSTALL_DIR=	/opt/freecalypso/include/rvinterf

all:	${SUBDIR}

asyncshell:	libasync libg23
lowlevel:	libg23
tmsh:		libasync

${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
	for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done
	mkdir -p ${INCLUDE_INSTALL_DIR}
	install -c -m 644 include/* ${INCLUDE_INSTALL_DIR}

FRC: