view rvinterf/Makefile @ 926:6a0aa8d36d06

rvinterf backslash escape: introduce libprint The new helper function library named libprint is meant to replace the badly misnamed libg23, and will soon contain functions for printing all of the same kinds of GPF TST packets that are now handled in libg23. However, we are also moving safe_print_trace() from libasync to this new library, and changing it to emit our new backslash escape format.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 23 May 2023 03:47:46 +0000
parents ab20ff8156ea
children 441004febe35
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGDIR=asyncshell ctracedec etmsync l1filter lowlevel rvtat tmsh
LIBDIR=	libasync libg23 libinterf libprint
SUBDIR=	${PROGDIR} ${LIBDIR}

INSTALL_PREFIX=	/opt/freecalypso
INCLUDE_INSTALL_DIR=	${INSTALL_PREFIX}/include/rvinterf

all:	${SUBDIR}

asyncshell:	libasync libg23 libinterf libprint
etmsync:	libinterf
l1filter:	libinterf
lowlevel:	libg23 libprint
rvtat:		libinterf
tmsh:		libasync libinterf libprint

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

FRC: