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