1# A Makefile for the installed lmbench
2#
3OS != scripts/os
4BINDIR = bin/${OS}
5
6.PHONY:	results rerun see
7
8results:
9	@(cd scripts; ./config-run ../${BINDIR}/CONFIG)
10	@(cd scripts; ./results)
11
12rerun:
13	@(if [ ! -f ${BINDIR}/CONFIG ]; then \
14	  (cd scripts; ./config-run ../${BINDIR}/CONFIG); \
15	fi)
16	@(cd scripts; ./results)
17
18see:
19	cd results && make summary percent | more
20