Makefile revision 89b43686db1fe9681d80a7cf5662730cb9378cae
9384cec630155c229c70dfb8a445c6ccf433045aJohann 'Myrkraverk' Oskarsson# CDDL HEADER START
e50226eccc6dfcba3cc6f0df38438900e3df225cYuri Pankov# The contents of this file are subject to the terms of the
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Common Development and Distribution License (the "License").
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# You may not use this file except in compliance with the License.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# or http://www.opensolaris.org/os/licensing.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# See the License for the specific language governing permissions
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# and limitations under the License.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# When distributing Covered Code, include this CDDL HEADER in each
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# If applicable, add the following below this CDDL HEADER, with the
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# fields enclosed by brackets "[]" replaced with your own identifying
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# information: Portions Copyright [yyyy] [name of copyright owner]
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# CDDL HEADER END
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Use is subject to license terms.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Copyright (c) 2011 Bayard G. Bell. All rights reserved.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# This makefile drives the production of the autofs file system
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# kernel module.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# intel architecture dependent
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Path to the base of the uts directory tree (usually /usr/src/uts).
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Define the module and object file sets.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Include common rules.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Define targets
84441f85b19f6b8080883f30109e58e43c893709Garrett D'AmoreINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Define dependency on rpcmod, rpcsec, and mntfs
84441f85b19f6b8080883f30109e58e43c893709Garrett D'AmoreLDFLAGS += -dy -N strmod/rpcmod -N misc/rpcsec -N fs/mntfs
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# For now, disable these lint checks; maintainers should endeavor
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# to investigate and remove these for maximum lint coverage.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Please do not carry these forward to new Makefiles.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Default build targets.
84441f85b19f6b8080883f30109e58e43c893709Garrett D'Amore# Include common targets.