# A Makefile for the installed lmbench
# $FreeBSD: ports/benchmarks/lmbench/files/Makefile,v 1.3 2005/10/25 18:09:10 fenner Exp $
#
OS != scripts/os
BINDIR = bin/${OS}

results:
	@(cd scripts; ./config-run ../${BINDIR}/CONFIG)
	@(cd scripts; ./results)

rerun:
	@(if [ ! -f ${BINDIR}/CONFIG ]; then \
	  (cd scripts; ./config-run ../${BINDIR}/CONFIG); \
	fi)
	@(cd scripts; ./results)

see:
	cd Results && make summary percent | more
