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