1*943e9869SLori Alt# 2*943e9869SLori Alt# CDDL HEADER START 3*943e9869SLori Alt# 4*943e9869SLori Alt# The contents of this file are subject to the terms of the 5*943e9869SLori Alt# Common Development and Distribution License (the "License"). 6*943e9869SLori Alt# You may not use this file except in compliance with the License. 7*943e9869SLori Alt# 8*943e9869SLori Alt# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*943e9869SLori Alt# or http://www.opensolaris.org/os/licensing. 10*943e9869SLori Alt# See the License for the specific language governing permissions 11*943e9869SLori Alt# and limitations under the License. 12*943e9869SLori Alt# 13*943e9869SLori Alt# When distributing Covered Code, include this CDDL HEADER in each 14*943e9869SLori Alt# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*943e9869SLori Alt# If applicable, add the following below this CDDL HEADER, with the 16*943e9869SLori Alt# fields enclosed by brackets "[]" replaced with your own identifying 17*943e9869SLori Alt# information: Portions Copyright [yyyy] [name of copyright owner] 18*943e9869SLori Alt# 19*943e9869SLori Alt# CDDL HEADER END 20*943e9869SLori Alt# 21*943e9869SLori Alt 22*943e9869SLori Alt# 23*943e9869SLori Alt# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 24*943e9869SLori Alt# 25*943e9869SLori Alt 26*943e9869SLori AltFSTYPE= zfs 27*943e9869SLori AltLIBPROG= bootinstall 28*943e9869SLori AltSRCS= bootinstall.sh 29*943e9869SLori AltSUBDIRS= etc 30*943e9869SLori Alt 31*943e9869SLori Altall := TARGET = all 32*943e9869SLori Altinstall := TARGET = install 33*943e9869SLori Altclean := TARGET = clean 34*943e9869SLori Altclobber := TARGET = clobber 35*943e9869SLori Altlint := TARGET = lint 36*943e9869SLori Alt 37*943e9869SLori Alt.KEEP_STATE: 38*943e9869SLori Alt 39*943e9869SLori Altinclude ../../Makefile.fstype 40*943e9869SLori Alt 41*943e9869SLori Altall: $(SUBDIRS) $(LIBPROG) 42*943e9869SLori Alt 43*943e9869SLori Altinstall: $(SUBDIRS) 44*943e9869SLori Alt 45*943e9869SLori Altclean: 46*943e9869SLori Alt $(RM) $(LIBPROG) 47*943e9869SLori Alt 48*943e9869SLori Alt$(SUBDIRS): FRC 49*943e9869SLori Alt @cd $@; pwd; $(MAKE) $(TARGET) 50*943e9869SLori AltFRC: 51