Makefile revision 25cf1a301a396c38e8adf52c15f537b80d2483f7
235N/A#
235N/A# CDDL HEADER START
822N/A#
822N/A# The contents of this file are subject to the terms of the
822N/A# Common Development and Distribution License (the "License").
235N/A# You may not use this file except in compliance with the License.
606N/A#
810N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
235N/A# or http://www.opensolaris.org/os/licensing.
235N/A# See the License for the specific language governing permissions
235N/A# and limitations under the License.
235N/A#
235N/A# When distributing Covered Code, include this CDDL HEADER in each
235N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
235N/A# If applicable, add the following below this CDDL HEADER, with the
235N/A# fields enclosed by brackets "[]" replaced with your own identifying
235N/A# information: Portions Copyright [yyyy] [name of copyright owner]
235N/A#
235N/A# CDDL HEADER END
235N/A#
235N/A#
235N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
235N/A# Use is subject to license terms.
235N/A#
235N/A# ident "%Z%%M% %I% %E% SMI"
235N/A#
235N/A# This makefile drives the production of the pcicmu driver kernel module
235N/A#
235N/A# sun4u opl implementation architecture dependent
235N/A#
235N/A# uts/sun4u/opl/pcicmu/Makefile
235N/A#
235N/A
235N/A#
822N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
235N/A#
235N/AUTSBASE = ../../..
235N/A
822N/A#
235N/A# Define the module and object file sets.
235N/A#
822N/AMODULE = pcicmu
235N/AOBJECTS = $(PCICMU_OBJS:%=$(OBJS_DIR)/%)
235N/ALINTS = $(PCICMU_OBJS:%.o=$(LINTS_DIR)/%.ln)
493N/AROOTMODULE = $(ROOT_OPL_DRV_DIR)/$(MODULE)
493N/A
235N/A#
235N/A# Include common rules.
235N/A#
235N/Ainclude $(UTSBASE)/sun4u/opl/Makefile.opl
822N/A
235N/A#
235N/A# Define targets
822N/A#
235N/AALL_TARGET = $(BINARY)
235N/ALINT_TARGET = $(MODULE).lint
235N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
235N/A
235N/A#
822N/A# lint pass one enforcement
822N/A#
822N/ACFLAGS += $(CCVERBOSE) -I../sys
235N/A
822N/A#
822N/A# Turn on doubleword alignment for 64 bit registers
822N/A#
822N/ACFLAGS += -dalign
235N/A
235N/A#
235N/A# Default build targets.
247N/A#
247N/A.KEEP_STATE:
247N/A
235N/Adef: $(DEF_DEPS)
247N/A
247N/Aall: $(ALL_DEPS)
235N/A
235N/Aclean: $(CLEAN_DEPS)
241N/A
493N/Aclobber: $(CLOBBER_DEPS)
493N/A
235N/Alint: $(LINT_DEPS)
493N/A
493N/Amodlintlib: $(MODLINTLIB_DEPS)
822N/A
822N/Aclean.lint: $(CLEAN_LINT_DEPS)
493N/A
493N/Ainstall: $(INSTALL_DEPS)
822N/A
822N/A#
822N/A# Include common targets.
493N/A#
822N/Ainclude $(UTSBASE)/sun4u/opl/Makefile.targ
822N/A