mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
16 lines
324 B
Makefile
16 lines
324 B
Makefile
# A Makefile for the installed lmbench
|
|
BINDIR = ./bin/bsd
|
|
|
|
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
|