mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-30 21:49:25 +00:00
f61d5cfb5b
copied over to ${PREFIX}/lib/lmbench.
16 lines
316 B
Makefile
16 lines
316 B
Makefile
# A Makefile for the installed lmbench
|
|
BINDIR = ./bin/bsd
|
|
|
|
results:
|
|
@(cd scripts; ./config-run ${BINDIR}/CONFIG)
|
|
@(cd scripts; ./results)
|
|
|
|
rerun:
|
|
@(if [ ! -f bin/bsd/CONFIG ]; then \
|
|
(cd scripts; ./config-run ${BINDIR}/CONFIG); \
|
|
fi)
|
|
@(cd scripts; ./results)
|
|
|
|
see:
|
|
cd Results && make summary percent | more
|