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