view rvinterf/Makefile @ 405:ed9b67e7e741

fcup-smsend: fixed bug in the handling of -W with no dest address argument The original code checked for argv[optind+1] when argv[optind] is NULL; on most systems this bogus code gets the first line of the environment, which is clearly not what we are after. Fixed the code to check argc instead.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 Aug 2018 18:59:54 +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: