Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
6466N/A#
6466N/A# CDDL HEADER START
6466N/A#
6466N/A# The contents of this file are subject to the terms of the
6466N/A# Common Development and Distribution License (the "License").
6466N/A# You may not use this file except in compliance with the License.
6466N/A#
6466N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6466N/A# or http://www.opensolaris.org/os/licensing.
6466N/A# See the License for the specific language governing permissions
6466N/A# and limitations under the License.
6466N/A#
6466N/A# When distributing Covered Code, include this CDDL HEADER in each
6466N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6466N/A# If applicable, add the following below this CDDL HEADER, with the
6466N/A# fields enclosed by brackets "[]" replaced with your own identifying
6466N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6466N/A#
6466N/A# CDDL HEADER END
6466N/A#
6466N/A#
6466N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
6466N/A# Use is subject to license terms.
6466N/A#
6466N/A# intel architecture dependent
6466N/A#
6466N/A
6466N/A#
6466N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
6466N/A#
6466N/AUTSBASE = ../..
6466N/A
6466N/A#
6466N/A# Define the module and object file sets.
6466N/A#
6466N/AMODULE = lofi
6466N/AOBJECTS = $(LOFI_OBJS:%=$(OBJS_DIR)/%)
6466N/ALINTS = $(LOFI_OBJS:%.o=$(LINTS_DIR)/%.ln)
6466N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
6466N/ACONF_SRCDIR = $(UTSBASE)/common/io
6466N/A
6466N/A#
6466N/A# Include common rules.
6466N/A#
6466N/Ainclude $(UTSBASE)/intel/Makefile.intel
6466N/A
6466N/A#
6466N/A# Overrides.
6466N/A#
6466N/AINC_PATH += -I$(SRC)/common/lzma
6466N/A
6466N/ACERRWARN += -_gcc=-Wno-uninitialized
6466N/A
6466N/A#
6466N/A# Define targets
6466N/A#
6466N/AALL_TARGET = $(BINARY) $(SRC_CONFILE)
6466N/ALINT_TARGET = $(MODULE).lint
6466N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
6466N/A
6466N/A#
6466N/A# Default build targets.
6466N/A#
6466N/A.KEEP_STATE:
6466N/A
6466N/Adef: $(DEF_DEPS)
6466N/A
6466N/Aall: $(ALL_DEPS)
6466N/A
6466N/Aclean: $(CLEAN_DEPS)
6466N/A
6466N/Aclobber: $(CLOBBER_DEPS)
6466N/A
6466N/Alint: $(LINT_DEPS)
6466N/A
6466N/Amodlintlib: $(MODLINTLIB_DEPS)
6466N/A
6466N/Aclean.lint: $(CLEAN_LINT_DEPS)
6466N/A
6466N/Ainstall: $(INSTALL_DEPS)
6466N/A
6466N/A#
6466N/A# Include common targets.
6466N/A#
6466N/Ainclude $(UTSBASE)/intel/Makefile.targ
6466N/A