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