diff 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 diff
--- a/rvinterf/Makefile	Tue May 23 03:21:02 2023 +0000
+++ b/rvinterf/Makefile	Tue May 23 03:47:46 2023 +0000
@@ -1,7 +1,7 @@
 CC=	gcc
 CFLAGS=	-O2
 PROGDIR=asyncshell ctracedec etmsync l1filter lowlevel rvtat tmsh
-LIBDIR=	libasync libg23 libinterf
+LIBDIR=	libasync libg23 libinterf libprint
 SUBDIR=	${PROGDIR} ${LIBDIR}
 
 INSTALL_PREFIX=	/opt/freecalypso
@@ -9,12 +9,12 @@
 
 all:	${SUBDIR}
 
-asyncshell:	libasync libg23 libinterf
+asyncshell:	libasync libg23 libinterf libprint
 etmsync:	libinterf
 l1filter:	libinterf
-lowlevel:	libg23
+lowlevel:	libg23 libprint
 rvtat:		libinterf
-tmsh:		libasync libinterf
+tmsh:		libasync libinterf libprint
 
 ${SUBDIR}: FRC
 	cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}"