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