6239 Add PKCS#11 v2.40 support
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / checksum / Makefile
blob8182cab0b9631b61d860a5dada9f7641fea8401d
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.
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.
13 # Copyright (c) 2015 by Delphix. All rights reserved.
16 .PARALLEL: $(SUBDIRS)
18 include $(SRC)/Makefile.master
20 ROOTOPTPKG = $(ROOT)/opt/zfs-tests
21 TESTDIR = $(ROOTOPTPKG)/tests/functional/checksum
23 SCRIPTS = run_edonr_test \
24 run_sha2_test \
25 run_skein_test
27 CMDS = $(SCRIPTS:%=$(TESTDIR)/%)
28 $(CMDS) := FILEMODE = 0555
30 all lint clean clobber:
32 install: $(CMDS)
34 $(CMDS): $(TESTDIR)
36 $(TESTDIR):
37 $(INS.dir)
39 $(TESTDIR)/%: %
40 $(INS.file)
42 $(TESTDIR)/%: %.ksh
43 $(INS.rename)
45 SUBDIRS = edonr \
46 sha2 \
47 skein
49 include $(SRC)/test/Makefile.com