Makefile revision 210db2243d3b5ca39c96a4c34c6d9453ddfbeaa9
1029N/A#
1029N/A# CDDL HEADER START
1029N/A#
1029N/A# The contents of this file are subject to the terms of the
1075N/A# Common Development and Distribution License, Version 1.0 only
1029N/A# (the "License"). You may not use this file except in compliance
1029N/A# with the License.
1075N/A#
1075N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1075N/A# or http://www.opensolaris.org/os/licensing.
1075N/A# See the License for the specific language governing permissions
1075N/A# and limitations under the License.
1075N/A#
1075N/A# When distributing Covered Code, include this CDDL HEADER in each
1075N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1075N/A# If applicable, add the following below this CDDL HEADER, with the
1075N/A# fields enclosed by brackets "[]" replaced with your own identifying
1075N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1075N/A#
1075N/A# CDDL HEADER END
1075N/A#
1075N/A#
1075N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
1075N/A# Use is subject to license terms.
1029N/A#
1029N/A#ident "%Z%%M% %I% %E% SMI"
1029N/A#
1029N/A# This makefile drives the production of the Broadcom BCM57xx
1029N/A# Gigabit Ethernet (BGE) driver module in intel systems
1029N/A#
1029N/A
1029N/A#
1029N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
1029N/A#
1029N/AUTSBASE = ../..
1029N/A
1029N/A#
1029N/A# Define the module and object file sets.
1029N/A#
1029N/AMODULE = bge
1029N/AOBJECTS = $(BGE_OBJS:%=$(OBJS_DIR)/%)
1029N/ALINTS = $(BGE_OBJS:%.o=$(LINTS_DIR)/%.ln)
1029N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
1029N/ACONF_SRCDIR = $(UTSBASE)/common/io/bge
1029N/A
1029N/A#
1029N/A# Include common rules.
1029N/A#
1029N/Ainclude $(UTSBASE)/intel/Makefile.intel
1029N/A
1029N/A#
1029N/A# Define targets
1029N/A#
1029N/AALL_TARGET = $(BINARY)
1029N/ALINT_TARGET = $(MODULE).lint
1029N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
1029N/A
1029N/A#
1029N/A# Overrides
1029N/A#
1029N/A
1029N/A#
1029N/A# Driver depends on MAC & IP
1075N/A#
1029N/ALDFLAGS += -dy -N misc/mac -N drv/ip
1029N/A
1029N/A#
1029N/A# Default build targets.
1029N/A#
1029N/A.KEEP_STATE:
1029N/A
1029N/Adef: $(DEF_DEPS)
1029N/A
1029N/Aall: $(ALL_DEPS)
1029N/A
1029N/Aclean: $(CLEAN_DEPS)
1029N/A
1029N/Aclobber: $(CLOBBER_DEPS)
1029N/A
1029N/Alint: $(LINT_DEPS)
1029N/A
1029N/Amodlintlib: $(MODLINTLIB_DEPS)
1029N/A
1029N/Aclean.lint: $(CLEAN_LINT_DEPS)
1029N/A
1029N/Ainstall: $(INSTALL_DEPS)
1029N/A
1029N/A#
1029N/A# Include common targets.
1029N/A#
1029N/Ainclude $(UTSBASE)/intel/Makefile.targ
1029N/A