1*c037192bSGarrett D'Amore# 2*c037192bSGarrett D'Amore# This file and its contents are supplied under the terms of the 3*c037192bSGarrett D'Amore# Common Development and Distribution License ("CDDL"), version 1.0. 4*c037192bSGarrett D'Amore# You may only use this file in accordance with the terms of version 5*c037192bSGarrett D'Amore# 1.0 of the CDDL. 6*c037192bSGarrett D'Amore# 7*c037192bSGarrett D'Amore# A full copy of the text of the CDDL should have accompanied this 8*c037192bSGarrett D'Amore# source. A copy of the CDDL is also available via the Internet at 9*c037192bSGarrett D'Amore# http://www.illumos.org/license/CDDL. 10*c037192bSGarrett D'Amore# 11*c037192bSGarrett D'Amore 12*c037192bSGarrett D'Amore# 13*c037192bSGarrett D'Amore# Copyright (c) 2012 by Delphix. All rights reserved. 14*c037192bSGarrett D'Amore# Copyright 2014, OmniTI Computer Consulting, Inc. All rights reserved. 15*c037192bSGarrett D'Amore# Copyright 2014 Garrett D'Amore <garrett@damore.org> 16*c037192bSGarrett D'Amore# 17*c037192bSGarrett D'Amore 18*c037192bSGarrett D'Amoreinclude $(SRC)/Makefile.master 19*c037192bSGarrett D'Amore 20*c037192bSGarrett D'AmoreSRCS = default.run 21*c037192bSGarrett D'Amore 22*c037192bSGarrett D'AmoreROOTOPTPKG = $(ROOT)/opt/util-tests 23*c037192bSGarrett D'AmoreRUNFILES = $(ROOTOPTPKG)/runfiles 24*c037192bSGarrett D'Amore 25*c037192bSGarrett D'AmoreCMDS = $(SRCS:%=$(RUNFILES)/%) 26*c037192bSGarrett D'Amore$(CMDS) := FILEMODE = 0444 27*c037192bSGarrett D'Amore 28*c037192bSGarrett D'Amoreall: $(SRCS) 29*c037192bSGarrett D'Amore 30*c037192bSGarrett D'Amoreinstall: $(CMDS) 31*c037192bSGarrett D'Amore 32*c037192bSGarrett D'Amoreclean lint clobber: 33*c037192bSGarrett D'Amore 34*c037192bSGarrett D'Amore$(CMDS): $(RUNFILES) $(SRCS) 35*c037192bSGarrett D'Amore 36*c037192bSGarrett D'Amore$(RUNFILES): 37*c037192bSGarrett D'Amore $(INS.dir) 38*c037192bSGarrett D'Amore 39*c037192bSGarrett D'Amore$(RUNFILES)/%: % 40*c037192bSGarrett D'Amore $(INS.file) 41