Makefile revision e07d9cb85217949d497b02d7211de8a197d2f2eb
0N/A#
0N/A# CDDL HEADER START
1356N/A#
0N/A# The contents of this file are subject to the terms of the
1504N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A#
919N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
919N/A#
0N/A
0N/A# ident "%Z%%M% %I% %E% SMI"
0N/A#
156N/A# This makefile drives the production of the wpi driver kernel module.
493N/A#
0N/A# i86pc architecture dependent
1356N/A#
1356N/A
1356N/A#
970N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
970N/A#
970N/AUTSBASE = ../..
970N/A
970N/A#
970N/A# Define the module and object file sets.
970N/A#
970N/AMODULE = ral
970N/AOBJECTS = $(RAL_OBJS:%=$(OBJS_DIR)/%)
970N/ALINTS = $(RAL_OBJS:%.o=$(LINTS_DIR)/%.ln)
970N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
970N/A
970N/A#
970N/A# Include common rules.
970N/A#
970N/Ainclude $(UTSBASE)/intel/Makefile.intel
970N/A
970N/A#
970N/A# Define targets
1504N/A#
1504N/AALL_TARGET = $(BINARY)
1504N/ALINT_TARGET = $(MODULE).lint
1504N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
970N/A
970N/A#
970N/A# Driver depends on GLDv3 & wifi kernel support module.
970N/A#
970N/ALDFLAGS += -dy -Nmisc/mac -Nmisc/net80211
1356N/A
970N/ALINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
0N/ALINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
950N/A
0N/A#
911N/A# Default build targets.
950N/A#
950N/A.KEEP_STATE:
911N/A
0N/Adef: $(DEF_DEPS)
493N/A
493N/Aall: $(ALL_DEPS)
0N/A
0N/Aclean: $(CLEAN_DEPS)
156N/A
156N/Aclobber: $(CLOBBER_DEPS)
0N/A
0N/Alint: $(LINT_DEPS)
950N/A
950N/Amodlintlib: $(MODLINTLIB_DEPS)
1531N/A
950N/Aclean.lint: $(CLEAN_LINT_DEPS)
950N/A
950N/Ainstall: $(INSTALL_DEPS)
1102N/A
1160N/A#
1160N/A# Include common targets.
364N/A#
156N/Ainclude $(UTSBASE)/intel/Makefile.targ
156N/A
0N/A#
591N/A# If you have any special case that general
947N/A# Makefile rules don't serve for you, just do
947N/A# it yourself.
591N/A#
591N/A