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