xref: /illumos-gate/usr/src/test/zfs-tests/tests/perf/fio/Makefile (revision dcbf3bd6a1f1360fc1afcee9e22c6dcff7844bf2)
1#
2# This file and its contents are supplied under the terms of the
3# Common Development and Distribution License ("CDDL"), version 1.0.
4# You may only use this file in accordance with the terms of version
5# 1.0 of the CDDL.
6#
7# A full copy of the text of the CDDL should have accompanied this
8# source.  A copy of the CDDL is also available via the Internet at
9# http://www.illumos.org/license/CDDL.
10#
11
12#
13# Copyright (c) 2015 by Delphix. All rights reserved.
14#
15
16include $(SRC)/Makefile.master
17
18ROOTOPTPKG = $(ROOT)/opt/zfs-tests
19TESTDIR = $(ROOTOPTPKG)/tests/perf/fio
20
21FILES = mkfiles.fio \
22	random_reads.fio \
23	random_readwrite.fio \
24	random_writes.fio \
25	sequential_reads.fio \
26	sequential_writes.fio
27
28CMDS = $(FILES:%=$(TESTDIR)/%)
29$(CMDS) := FILEMODE = 0444
30
31all lint clean clobber:
32
33install: $(CMDS)
34
35$(CMDS): $(TESTDIR)
36
37$(TESTDIR):
38	$(INS.dir)
39
40$(TESTDIR)/%: %
41	$(INS.file)
42