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