1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-30 21:49:25 +00:00
freebsd-ports/benchmarks/lmbench/files/Makefile
Satoshi Asami f61d5cfb5b The Makefile that has three targets, "results", "rerun" and "see", gets
copied over to ${PREFIX}/lib/lmbench.
1995-05-14 06:19:50 +00:00

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