Makefile revision 2c601221f598e1c7737ee1128853af2a7be2acb2
5398N/A#
5398N/A# CDDL HEADER START
5398N/A#
5398N/A# The contents of this file are subject to the terms of the
5398N/A# Common Development and Distribution License (the "License").
5398N/A# You may not use this file except in compliance with the License.
5398N/A#
5398N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5398N/A# or http://www.opensolaris.org/os/licensing.
5398N/A# See the License for the specific language governing permissions
5398N/A# and limitations under the License.
5398N/A#
5398N/A# When distributing Covered Code, include this CDDL HEADER in each
5398N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5398N/A# If applicable, add the following below this CDDL HEADER, with the
5398N/A# fields enclosed by brackets "[]" replaced with your own identifying
5398N/A# information: Portions Copyright [yyyy] [name of copyright owner]
5398N/A#
5398N/A# CDDL HEADER END
5398N/A#
5398N/A#
5398N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5398N/A# Use is subject to license terms.
5398N/A#
5680N/A# Copyright (c) 2015 by Delphix. All rights reserved.
5680N/A#
5680N/A
5680N/APROG:sh= basename `pwd`
5680N/ABASHPROG= zloop
5398N/AROOTBASHPROG= $(ROOTBIN)/$(BASHPROG)
5398N/A
5398N/Ainclude ../Makefile.cmd
5559N/A
5398N/A$(INTEL_BLD)SUBDIRS = $(MACH)
5398N/A$(BUILD64)SUBDIRS += $(MACH64)
5559N/A
5559N/Aall := TARGET = all
5398N/Ainstall := TARGET = install
5398N/Aclean := TARGET = clean
5559N/Aclobber := TARGET = clobber
5398N/Alint := TARGET = lint
5680N/A
6690N/A.KEEP_STATE:
6690N/A
6690N/Aall lint: $(SUBDIRS) $(BASHPROG)
6690N/A
5680N/Aclean clobber: $(SUBDIRS)
5398N/A
5398N/Ainstall: $(SUBDIRS) $(ROOTBASHPROG)
5398N/A -$(RM) $(ROOTPROG)
5398N/A -$(LN) $(ISAEXEC) $(ROOTPROG)
5398N/A
5398N/A$(SUBDIRS): FRC
5398N/A @cd $@; pwd; $(MAKE) $(TARGET)
5398N/A
5398N/AFRC:
5398N/A
5398N/Ainclude ../Makefile.targ
5680N/A