1148bd5be2
- 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>
20 lines
382 B
Makefile
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
|