view Makefile @ 619:f82551c77e58

libserial-newlnx: ASYNC_LOW_LATENCY patch reverted Reports from Das Signal indicate that loadtools performance on Debian is about the same as on Slackware, and that including or omitting the ASYNC_LOW_LATENCY patch from Serg makes no difference. Because the patch in question does not appear to be necessary, it is being reverted until and unless someone other than Serg reports an actual real-world system on which loadtools operation times are slowed compared to the Mother's Slackware reference and on which Slackware-like performance can be restored by setting the ASYNC_LOW_LATENCY flag.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 27 Feb 2020 01:09:48 +0000
parents a87ac210727a
children 8ddb16a37273
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGDIR=ffstools loadtools miscutil ringtools rvinterf 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: