freebsd-ports/benchmarks/lmbench/files/Makefile
Greg Larkin 1148bd5be2 - Updated to 3.0.a9
- Added patch files to correct small errors
- Submitter has been as assigned as new maintainer

PR:		ports/129972
Submitted by:	Sachidananda Urs <sacchi at gmail dot com>
2009-06-25 18:17:04 +00:00

20 lines
382 B
Makefile

# A Makefile for the installed lmbench
# $FreeBSD$
#
OS != scripts/os
BINDIR = bin/${OS}
.PHONY: results rerun see
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