mirror of
https://git.freebsd.org/ports.git
synced 2025-05-30 01:46:55 -04:00
19 lines
369 B
Makefile
19 lines
369 B
Makefile
# A Makefile for the installed lmbench
|
|
|
|
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
|