xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_get/Makefile (revision 694c35faa87b858ecdadfe4fc592615f4eefbb07)
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) 2012 by Delphix. All rights reserved.
14#
15
16include $(SRC)/Makefile.master
17
18ROOTOPTPKG = $(ROOT)/opt/zfs-tests
19TESTDIR = $(ROOTOPTPKG)/tests/functional/cli_root/zfs_get
20
21PROGS = cleanup \
22	setup \
23	zfs_get_001_pos \
24	zfs_get_002_pos \
25	zfs_get_003_pos \
26	zfs_get_004_pos \
27	zfs_get_005_neg \
28	zfs_get_006_neg \
29	zfs_get_007_neg \
30	zfs_get_008_pos \
31	zfs_get_009_pos \
32	zfs_get_010_neg
33
34FILES = zfs_get_common.kshlib \
35	zfs_get_list_d.kshlib
36
37CMDS = $(PROGS:%=$(TESTDIR)/%) $(FILES:%=$(TESTDIR)/%)
38$(CMDS) := FILEMODE = 0555
39
40all lint clean clobber:
41
42install: $(CMDS)
43
44$(CMDS): $(TESTDIR)
45
46$(TESTDIR):
47	$(INS.dir)
48
49$(TESTDIR)/%: %
50	$(INS.file)
51
52$(TESTDIR)/%: %.ksh
53	$(INS.rename)
54