Makefile revision 7ff178cd8db129d385d3177eb20744d3b6efc59b
377N/A#
377N/A# CDDL HEADER START
377N/A#
377N/A# The contents of this file are subject to the terms of the
377N/A# Common Development and Distribution License (the "License").
377N/A# You may not use this file except in compliance with the License.
377N/A#
377N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
377N/A# or http://www.opensolaris.org/os/licensing.
377N/A# See the License for the specific language governing permissions
377N/A# and limitations under the License.
377N/A#
377N/A# When distributing Covered Code, include this CDDL HEADER in each
377N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
377N/A# If applicable, add the following below this CDDL HEADER, with the
377N/A# fields enclosed by brackets "[]" replaced with your own identifying
377N/A# information: Portions Copyright [yyyy] [name of copyright owner]
377N/A#
377N/A# CDDL HEADER END
377N/A#
377N/A#
377N/A# uts/i86pc/apix/Makefile
377N/A#
377N/A# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
377N/A#
377N/A# This makefile drives the production of the pcplusmp "mach"
377N/A# kernel module.
377N/A#
377N/A# pcplusmp implementation architecture dependent
1419N/A#
377N/A
377N/A#
377N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
377N/A#
377N/AUTSBASE = ../..
377N/A
377N/A#
377N/A# Define the module and object file sets.
377N/A#
377N/AMODULE = apix
377N/AOBJECTS = $(APIX_OBJS:%=$(OBJS_DIR)/%)
377N/ALINTS = $(APIX_OBJS:%.o=$(LINTS_DIR)/%.ln)
377N/AROOTMODULE = $(ROOT_PSM_MACH_DIR)/$(MODULE)
377N/A
377N/A#
496N/A# Include common rules.
496N/A#
377N/Ainclude $(UTSBASE)/i86pc/Makefile.i86pc
377N/A
377N/A#
377N/A# Define targets
377N/A#
377N/AALL_TARGET = $(BINARY)
377N/ALINT_TARGET = $(MODULE).lint
377N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
377N/A
377N/ADEBUG_FLGS =
377N/A$(NOT_RELEASE_BUILD)DEBUG_DEFS += $(DEBUG_FLGS)
489N/A
489N/A#
377N/A# Depends on ACPI CA interpreter
377N/A#
377N/ALDFLAGS += -dy -N misc/acpica
377N/A
377N/A#
377N/A# Default build targets.
377N/A#
377N/A.KEEP_STATE:
377N/A
377N/Adef: $(DEF_DEPS)
377N/A
480N/Aall: $(ALL_DEPS)
480N/A
480N/Aclean: $(CLEAN_DEPS)
480N/A
377N/Aclobber: $(CLOBBER_DEPS)
377N/A
377N/Alint: $(LINT_DEPS)
377N/A
377N/Amodlintlib: $(MODLINTLIB_DEPS)
489N/A
489N/Aclean.lint: $(CLEAN_LINT_DEPS)
377N/A
377N/Ainstall: $(INSTALL_DEPS)
489N/A
489N/A#
377N/A# Include common targets.
377N/A#
include $(UTSBASE)/i86pc/Makefile.targ