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