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