Makefile revision 2
2380N/A#
2380N/A# CDDL HEADER START
2380N/A#
2380N/A# The contents of this file are subject to the terms of the
2380N/A# Common Development and Distribution License (the "License").
2380N/A# You may not use this file except in compliance with the License.
2380N/A#
2380N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2380N/A# or http://www.opensolaris.org/os/licensing.
2380N/A# See the License for the specific language governing permissions
2380N/A# and limitations under the License.
2380N/A#
2380N/A# When distributing Covered Code, include this CDDL HEADER in each
2380N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2380N/A# If applicable, add the following below this CDDL HEADER, with the
2380N/A# fields enclosed by brackets "[]" replaced with your own identifying
2380N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2380N/A#
2380N/A# CDDL HEADER END
331N/A#
2380N/A#
2380N/A# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
2380N/A#
2380N/A
2380N/Ainclude ../Makefile.lib
2380N/A
2380N/A# Add plugin module directories here.
2380N/A
331N/ASUBDIRS = zfs \
2380N/A legacy \
2380N/A smb \
2380N/A nfs \
2380N/A autofs \
2380N/A cache
2380N/A
2380N/Aall := TARGET = all
2380N/Aclean := TARGET = clean
2380N/Aclobber := TARGET = clobber
2380N/Ainstall := TARGET = install
331N/Alint := TARGET = lint
2380N/A_msg := TARGET = _msg
2380N/A
2380N/A.KEEP_STATE:
2380N/A
2380N/Aall clean clobber install lint _msg: $(SUBDIRS)
2380N/A
2380N/A# Plugins are not linked to via the link-editor, and stubs are not needed.
2380N/A# Provide NULL make rules to satisfy the parent makefiles.
331N/Astub:
2380N/Astubinstall:
2380N/A
2380N/A$(SUBDIRS): FRC
2380N/A @cd $@; pwd; $(MAKE) $(TARGET)
2380N/A
2380N/AFRC:
2380N/A
2380N/Ainclude ../Makefile.targ
331N/Ainclude ../../Makefile.msg.targ
2380N/A