Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
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
|