aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/lmbench/files/Makefile
blob: c41de23f0131fe1e3077983e69c6ad1dee1eae31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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