Makefile revision 986fd29a0dc13f7608ef7f508f6e700bd7bc2720
132N/A#
132N/A# CDDL HEADER START
132N/A#
132N/A# The contents of this file are subject to the terms of the
132N/A# Common Development and Distribution License (the "License").
132N/A# You may not use this file except in compliance with the License.
132N/A#
132N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
132N/A# or http://www.opensolaris.org/os/licensing.
132N/A# See the License for the specific language governing permissions
132N/A# and limitations under the License.
132N/A#
132N/A# When distributing Covered Code, include this CDDL HEADER in each
132N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
132N/A# If applicable, add the following below this CDDL HEADER, with the
132N/A# fields enclosed by brackets "[]" replaced with your own identifying
132N/A# information: Portions Copyright [yyyy] [name of copyright owner]
132N/A#
132N/A# CDDL HEADER END
132N/A#
1149N/A#
132N/A# uts/sparc/dcfs/Makefile
132N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
215N/A# Use is subject to license terms.
132N/A#
1215N/A#ident "%Z%%M% %I% %E% SMI"
1215N/A#
1318N/A# This makefile drives the production of the dcfs file system
1176N/A# kernel module.
132N/A#
132N/A# sparc architecture dependent
132N/A#
132N/A
132N/A#
132N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
132N/A#
132N/AUTSBASE = ../..
132N/A
132N/A#
132N/A# Define the module and object file sets.
132N/A#
132N/AMODULE = dcfs
132N/AOBJECTS = $(DCFS_OBJS:%=$(OBJS_DIR)/%)
132N/ALINTS = $(DCFS_OBJS:%.o=$(LINTS_DIR)/%.ln)
132N/AROOTMODULE = $(ROOT_FS_DIR)/$(MODULE)
132N/A
132N/A#
132N/A# Include common rules.
132N/A#
132N/Ainclude $(UTSBASE)/sparc/Makefile.sparc
132N/A
132N/A#
132N/A# Define targets
132N/A#
132N/AALL_TARGET = $(BINARY)
132N/ALINT_TARGET = $(MODULE).lint
132N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
132N/A
132N/A#
132N/A# Overrides.
132N/A#
132N/ACFLAGS += $(CCVERBOSE)
132N/A
132N/A#
132N/A# Default build targets.
132N/A#
132N/A.KEEP_STATE:
132N/A
132N/Adef: $(DEF_DEPS)
132N/A
132N/Aall: $(ALL_DEPS)
132N/A
132N/Aclean: $(CLEAN_DEPS)
132N/A
132N/Aclobber: $(CLOBBER_DEPS)
132N/A
132N/Alint: $(LINT_DEPS)
132N/A
132N/Amodlintlib: $(MODLINTLIB_DEPS)
132N/A
132N/Aclean.lint: $(CLEAN_LINT_DEPS)
132N/A
132N/Ainstall: $(INSTALL_DEPS)
132N/A
132N/A#
132N/A# Include common targets.
132N/A#
132N/Ainclude $(UTSBASE)/sparc/Makefile.targ
132N/A