220N/A#
1472N/A# CDDL HEADER START
220N/A#
220N/A# The contents of this file are subject to the terms of the
220N/A# Common Development and Distribution License (the "License").
220N/A# You may not use this file except in compliance with the License.
220N/A#
220N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
220N/A# or http://www.opensolaris.org/os/licensing.
220N/A# See the License for the specific language governing permissions
220N/A# and limitations under the License.
220N/A#
220N/A# When distributing Covered Code, include this CDDL HEADER in each
220N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
220N/A# If applicable, add the following below this CDDL HEADER, with the
220N/A# fields enclosed by brackets "[]" replaced with your own identifying
220N/A# information: Portions Copyright [yyyy] [name of copyright owner]
220N/A#
1472N/A# CDDL HEADER END
1472N/A#
1472N/A#
220N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
220N/A# Use is subject to license terms.
220N/A#
220N/A
220N/A#ident "%Z%%M% %I% %E% SMI"
417N/A#
220N/A# uts/sparc/ippctl/Makefile
220N/A#
220N/A# This makefile drives the production of the ipp driver
220N/A# kernel module.
220N/A#
220N/A
220N/A#
220N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
220N/A#
220N/AUTSBASE = ../..
220N/A
220N/A#
417N/A# Define the module and object file sets.
417N/A#
417N/AMODULE = ippctl
220N/AOBJECTS = $(IPP_OBJS:%=$(OBJS_DIR)/%)
220N/ALINTS = $(IPP_OBJS:%.o=$(LINTS_DIR)/%.ln)
220N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
220N/ACONF_SRCDIR = $(UTSBASE)/common/ipp
220N/A
220N/A#
220N/A# Include common rules.
220N/A#
220N/Ainclude $(UTSBASE)/sparc/Makefile.sparc
220N/A
417N/A#
417N/A# Define targets
417N/A#
220N/AALL_TARGET = $(BINARY)
220N/ALINT_TARGET = $(MODULE).lint
220N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
220N/A
220N/A#
220N/A# Overrides.
220N/A#
220N/ACFLAGS += $(CCVERBOSE)
220N/A
220N/A#
220N/A# For now, disable these lint checks; maintainers should endeavor
220N/A# to investigate and remove these for maximum lint coverage.
220N/A# Please do not carry these forward to new Makefiles.
220N/A#
220N/ALINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
220N/A
220N/A#
220N/A# Default build targets.
220N/A#
220N/A.KEEP_STATE:
220N/A
220N/Adef: $(DEF_DEPS)
220N/A
220N/Aall: $(ALL_DEPS)
220N/A
220N/Aclean: $(CLEAN_DEPS)
220N/A
220N/Aclobber: $(CLOBBER_DEPS)
220N/A
220N/Alint: $(LINT_DEPS)
220N/A
220N/Amodlintlib: $(MODLINTLIB_DEPS)
220N/A
220N/Aclean.lint: $(CLEAN_LINT_DEPS)
220N/A
220N/Ainstall: $(INSTALL_DEPS)
220N/A
220N/A#
220N/A# Include common targets.
220N/A#
220N/Ainclude $(UTSBASE)/sparc/Makefile.targ
220N/A