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