Makefile revision b6805bf78d2bbbeeaea8909a05623587b42d58b3
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# CDDL HEADER START
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# The contents of this file are subject to the terms of the
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# Common Development and Distribution License (the "License").
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# You may not use this file except in compliance with the License.
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# or http://www.opensolaris.org/os/licensing.
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# See the License for the specific language governing permissions
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# and limitations under the License.
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# When distributing Covered Code, include this CDDL HEADER in each
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# If applicable, add the following below this CDDL HEADER, with the
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# fields enclosed by brackets "[]" replaced with your own identifying
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# information: Portions Copyright [yyyy] [name of copyright owner]
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# CDDL HEADER END
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# Use is subject to license terms.
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmek# This makefile drives the production of the mwlfw kernel module.
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# Path to the base of the uts directory tree (usually /usr/src/uts).
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmek# Define the module and object file sets.
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekOBJECTS = $(MWLFW_OBJS:%=$(OBJS_DIR)/%)
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekLINTS = $(MWLFW_OBJS:%.o=$(LINTS_DIR)/%.ln)
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmek# Include common rules.
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmekinclude $(UTSBASE)/intel/Makefile.intel
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmek# For now, disable these lint checks; maintainers should endeavor
f59e0b64351adec735d06ccf0d0ff0eb31c902c0Lennart Poettering# to investigate and remove these for maximum lint coverage.
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmek# Please do not carry these forward to new Makefiles.
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekLINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekLINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekLINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-SzmekLINTTAGS += -erroff=E_STATIC_UNUSED
798d3a524ea57aaf40cb53858aaa45ec702f012dZbigniew Jędrzejewski-Szmek# Default build targets.
$(FWOBJ):