view 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 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: