0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence#
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence#
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence#
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# BSD 3 Clause License
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence#
15a44745412679c30a6d022733925af70a38b715David Lawrence# Copyright (c) 2007, The Storage Networking Industry Association.
15a44745412679c30a6d022733925af70a38b715David Lawrence#
15a44745412679c30a6d022733925af70a38b715David Lawrence# Redistribution and use in source and binary forms, with or without
15a44745412679c30a6d022733925af70a38b715David Lawrence# modification, are permitted provided that the following conditions
15a44745412679c30a6d022733925af70a38b715David Lawrence# are met:
15a44745412679c30a6d022733925af70a38b715David Lawrence# - Redistributions of source code must retain the above copyright
15a44745412679c30a6d022733925af70a38b715David Lawrence# notice, this list of conditions and the following disclaimer.
15a44745412679c30a6d022733925af70a38b715David Lawrence#
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# - Redistributions in binary form must reproduce the above copyright
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# notice, this list of conditions and the following disclaimer in
fcf28b759c65388e8875f2dbcf8eb5fa786b29ecAndreas Gustafsson# the documentation and/or other materials provided with the
cb4a97bb1c84fcab089136f0a4686ab5fea6a07cDavid Lawrence# distribution.
cb4a97bb1c84fcab089136f0a4686ab5fea6a07cDavid Lawrence#
cb4a97bb1c84fcab089136f0a4686ab5fea6a07cDavid Lawrence# - Neither the name of The Storage Networking Industry Association (SNIA)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# nor the names of its contributors may be used to endorse or promote
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# products derived from this software without specific prior written
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# permission.
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence#
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence# POSSIBILITY OF SUCH DAMAGE.
1ab0c9558f167cac2fc6a486547334d56930b81eDavid Lawrence#
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceinclude ../Makefile.lib
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid LawrenceHDRS= libndmp.h
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid LawrenceHDRDIR= common
1ab0c9558f167cac2fc6a486547334d56930b81eDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid LawrenceSUBDIRS= $(MACH)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence$(BUILD64)SUBDIRS += $(MACH64)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceall := TARGET= all
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceclean := TARGET= clean
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceclobber := TARGET= clobber
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceinstall := TARGET= install
fcf28b759c65388e8875f2dbcf8eb5fa786b29ecAndreas Gustafssonlint := TARGET= lint
fcf28b759c65388e8875f2dbcf8eb5fa786b29ecAndreas Gustafssonstub := TARGET = stub
fcf28b759c65388e8875f2dbcf8eb5fa786b29ecAndreas Gustafssonstubinstall := TARGET = stubinstall
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence.KEEP_STATE:
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceall clean clobber install lint stub stubinstall: $(SUBDIRS)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrenceinstall_h: $(ROOTHDRS)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrencecheck: $(CHECKHDRS)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence$(SUBDIRS): FRC
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence @cd $@; pwd; $(MAKE) $(TARGET)
0c73b546ecfa49b9d1c8fdb9a48d4cd62176124aDavid Lawrence
FRC:
include ../Makefile.targ
include ../../Makefile.msg.targ