1*cd964fceSMatt Barden#
2*cd964fceSMatt Barden# This file and its contents are supplied under the terms of the
3*cd964fceSMatt Barden# Common Development and Distribution License ("CDDL"), version 1.0.
4*cd964fceSMatt Barden# You may only use this file in accordance with the terms of version
5*cd964fceSMatt Barden# 1.0 of the CDDL.
6*cd964fceSMatt Barden#
7*cd964fceSMatt Barden# A full copy of the text of the CDDL should have accompanied this
8*cd964fceSMatt Barden# source.  A copy of the CDDL is also available via the Internet at
9*cd964fceSMatt Barden# http://www.illumos.org/license/CDDL.
10*cd964fceSMatt Barden#
11*cd964fceSMatt Barden
12*cd964fceSMatt Barden#
13*cd964fceSMatt Barden# Copyright (c) 2012 by Delphix. All rights reserved.
14*cd964fceSMatt Barden# Copyright 2014, OmniTI Computer Consulting, Inc. All rights reserved.
15*cd964fceSMatt Barden# Copyright 2015 Nexenta Systems, Inc.  All rights reserved.
16*cd964fceSMatt Barden#
17*cd964fceSMatt Barden
18*cd964fceSMatt Bardeninclude $(SRC)/Makefile.master
19*cd964fceSMatt Barden
20*cd964fceSMatt BardenSRCS = default.run
21*cd964fceSMatt Barden
22*cd964fceSMatt BardenROOTOPTPKG = $(ROOT)/opt/crypto-tests
23*cd964fceSMatt BardenRUNFILES = $(ROOTOPTPKG)/runfiles
24*cd964fceSMatt Barden
25*cd964fceSMatt BardenCMDS = $(SRCS:%=$(RUNFILES)/%)
26*cd964fceSMatt Barden$(CMDS) := FILEMODE = 0444
27*cd964fceSMatt Barden
28*cd964fceSMatt Bardenall: $(SRCS)
29*cd964fceSMatt Barden
30*cd964fceSMatt Bardeninstall: $(CMDS)
31*cd964fceSMatt Barden
32*cd964fceSMatt Bardenclean lint clobber:
33*cd964fceSMatt Barden
34*cd964fceSMatt Barden$(CMDS): $(RUNFILES) $(SRCS)
35*cd964fceSMatt Barden
36*cd964fceSMatt Barden$(RUNFILES):
37*cd964fceSMatt Barden	$(INS.dir)
38*cd964fceSMatt Barden
39*cd964fceSMatt Barden$(RUNFILES)/%: %
40*cd964fceSMatt Barden	$(INS.file)
41