1*a4dd1f35SJohn Wren Kennedy# 2*a4dd1f35SJohn Wren Kennedy# This file and its contents are supplied under the terms of the 3*a4dd1f35SJohn Wren Kennedy# Common Development and Distribution License ("CDDL"), version 1.0. 4*a4dd1f35SJohn Wren Kennedy# You may only use this file in accordance with the terms of version 5*a4dd1f35SJohn Wren Kennedy# 1.0 of the CDDL. 6*a4dd1f35SJohn Wren Kennedy# 7*a4dd1f35SJohn Wren Kennedy# A full copy of the text of the CDDL should have accompanied this 8*a4dd1f35SJohn Wren Kennedy# source. A copy of the CDDL is also available via the Internet at 9*a4dd1f35SJohn Wren Kennedy# http://www.illumos.org/license/CDDL. 10*a4dd1f35SJohn Wren Kennedy# 11*a4dd1f35SJohn Wren Kennedy 12*a4dd1f35SJohn Wren Kennedy# 13*a4dd1f35SJohn Wren Kennedy# Copyright (c) 2013 by Delphix. All rights reserved. 14*a4dd1f35SJohn Wren Kennedy# 15*a4dd1f35SJohn Wren Kennedy 16*a4dd1f35SJohn Wren Kennedyinclude $(SRC)/Makefile.master 17*a4dd1f35SJohn Wren Kennedy 18*a4dd1f35SJohn Wren KennedyROOTOPTPKG = $(ROOT)/opt/zfs-tests 19*a4dd1f35SJohn Wren KennedyTESTDIR = $(ROOTOPTPKG)/tests/functional/delegate 20*a4dd1f35SJohn Wren Kennedy 21*a4dd1f35SJohn Wren KennedyPROGS = cleanup \ 22*a4dd1f35SJohn Wren Kennedy setup \ 23*a4dd1f35SJohn Wren Kennedy zfs_allow_001_pos \ 24*a4dd1f35SJohn Wren Kennedy zfs_allow_002_pos \ 25*a4dd1f35SJohn Wren Kennedy zfs_allow_003_pos \ 26*a4dd1f35SJohn Wren Kennedy zfs_allow_004_pos \ 27*a4dd1f35SJohn Wren Kennedy zfs_allow_005_pos \ 28*a4dd1f35SJohn Wren Kennedy zfs_allow_006_pos \ 29*a4dd1f35SJohn Wren Kennedy zfs_allow_007_pos \ 30*a4dd1f35SJohn Wren Kennedy zfs_allow_008_pos \ 31*a4dd1f35SJohn Wren Kennedy zfs_allow_009_neg \ 32*a4dd1f35SJohn Wren Kennedy zfs_allow_010_pos \ 33*a4dd1f35SJohn Wren Kennedy zfs_allow_011_neg \ 34*a4dd1f35SJohn Wren Kennedy zfs_allow_012_neg \ 35*a4dd1f35SJohn Wren Kennedy zfs_unallow_001_pos \ 36*a4dd1f35SJohn Wren Kennedy zfs_unallow_002_pos \ 37*a4dd1f35SJohn Wren Kennedy zfs_unallow_003_pos \ 38*a4dd1f35SJohn Wren Kennedy zfs_unallow_004_pos \ 39*a4dd1f35SJohn Wren Kennedy zfs_unallow_005_pos \ 40*a4dd1f35SJohn Wren Kennedy zfs_unallow_006_pos \ 41*a4dd1f35SJohn Wren Kennedy zfs_unallow_007_neg \ 42*a4dd1f35SJohn Wren Kennedy zfs_unallow_008_neg 43*a4dd1f35SJohn Wren Kennedy 44*a4dd1f35SJohn Wren KennedyFILES = delegate.cfg \ 45*a4dd1f35SJohn Wren Kennedy delegate_common.kshlib 46*a4dd1f35SJohn Wren Kennedy 47*a4dd1f35SJohn Wren KennedyCMDS = $(PROGS:%=$(TESTDIR)/%) $(FILES:%=$(TESTDIR)/%) 48*a4dd1f35SJohn Wren Kennedy$(CMDS) := FILEMODE = 0555 49*a4dd1f35SJohn Wren Kennedy 50*a4dd1f35SJohn Wren Kennedyall lint clean clobber: 51*a4dd1f35SJohn Wren Kennedy 52*a4dd1f35SJohn Wren Kennedyinstall: $(CMDS) 53*a4dd1f35SJohn Wren Kennedy 54*a4dd1f35SJohn Wren Kennedy$(CMDS): $(TESTDIR) 55*a4dd1f35SJohn Wren Kennedy 56*a4dd1f35SJohn Wren Kennedy$(TESTDIR): 57*a4dd1f35SJohn Wren Kennedy $(INS.dir) 58*a4dd1f35SJohn Wren Kennedy 59*a4dd1f35SJohn Wren Kennedy$(TESTDIR)/%: %.ksh 60*a4dd1f35SJohn Wren Kennedy $(INS.rename) 61*a4dd1f35SJohn Wren Kennedy 62*a4dd1f35SJohn Wren Kennedy$(TESTDIR)/%: % 63*a4dd1f35SJohn Wren Kennedy $(INS.file) 64