108057504Sxy150489# 208057504Sxy150489# CDDL HEADER START 308057504Sxy150489# 408057504Sxy150489# The contents of this file are subject to the terms of the 508057504Sxy150489# Common Development and Distribution License (the "License"). 608057504Sxy150489# You may not use this file except in compliance with the License. 708057504Sxy150489# 808057504Sxy150489# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 908057504Sxy150489# or http://www.opensolaris.org/os/licensing. 1008057504Sxy150489# See the License for the specific language governing permissions 1108057504Sxy150489# and limitations under the License. 1208057504Sxy150489# 1308057504Sxy150489# When distributing Covered Code, include this CDDL HEADER in each 1408057504Sxy150489# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1508057504Sxy150489# If applicable, add the following below this CDDL HEADER, with the 1608057504Sxy150489# fields enclosed by brackets "[]" replaced with your own identifying 1708057504Sxy150489# information: Portions Copyright [yyyy] [name of copyright owner] 1808057504Sxy150489# 1908057504Sxy150489# CDDL HEADER END 2008057504Sxy150489# 2108057504Sxy150489# 22*4045d941Ssowmini# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 2308057504Sxy150489# Use is subject to license terms. 2408057504Sxy150489# 2508057504Sxy150489# ident "%Z%%M% %I% %E% SMI" 2608057504Sxy150489# 2708057504Sxy150489# uts/intel/e1000g/Makefile 2808057504Sxy150489# 2908057504Sxy150489# This makefile drives the production of the iprb 3008057504Sxy150489# network driver kernel module. 3108057504Sxy150489# 3208057504Sxy150489# intel architecture dependent 3308057504Sxy150489# 3408057504Sxy150489 3508057504Sxy150489# 3608057504Sxy150489# Paths to the base of the uts directory trees 3708057504Sxy150489# 3808057504Sxy150489UTSBASE = ../.. 3908057504Sxy150489 4008057504Sxy150489# 4108057504Sxy150489# Define the module and object file sets. 4208057504Sxy150489# 4308057504Sxy150489MODULE = e1000g 4408057504Sxy150489OBJECTS = $(E1000G_OBJS:%=$(OBJS_DIR)/%) 4508057504Sxy150489LINTS = $(E1000G_OBJS:%.o=$(LINTS_DIR)/%.ln) 4608057504Sxy150489ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 4708057504Sxy150489CONF_SRCDIR = $(UTSBASE)/common/io/e1000g 4808057504Sxy150489 4908057504Sxy150489# 5008057504Sxy150489# Include common rules. 5108057504Sxy150489# 5208057504Sxy150489include $(UTSBASE)/intel/Makefile.intel 5308057504Sxy150489 5408057504Sxy150489CFLAGS += -D_KERNEL -Di386 -DNEWSTAT -DNOMUT -DRCVWORKAROUND \ 5508057504Sxy150489 -DINTEL_IP \ 5608057504Sxy150489 -DPAXSON -DBAY_CITY \ 5708057504Sxy150489 -DTANAX_WORKAROUND -I$(UTSBASE)/common/io/e1000g 5808057504Sxy150489 5908057504Sxy150489CFLAGS_CPP_COMMENTS = -xCC 6008057504Sxy150489 6108057504Sxy150489CFLAGS += $(CFLAGS_CPP_COMMENTS) 6208057504Sxy150489 6308057504Sxy150489# 6408057504Sxy150489# Define targets 6508057504Sxy150489# 6608057504Sxy150489ALL_TARGET = $(BINARY) $(CONFMOD) 6708057504Sxy150489LINT_TARGET = $(MODULE).lint 6808057504Sxy150489INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 6908057504Sxy150489 7008057504Sxy150489# 71*4045d941Ssowmini# Driver depends on MAC 7208057504Sxy150489# 73*4045d941SsowminiLDFLAGS += -dy -N misc/mac 7408057504Sxy150489 7508057504Sxy150489# 7608057504Sxy150489# Default build targets. 7708057504Sxy150489# 7808057504Sxy150489.KEEP_STATE: 7908057504Sxy150489 8008057504Sxy150489def: $(DEF_DEPS) 8108057504Sxy150489 8208057504Sxy150489all: $(ALL_DEPS) 8308057504Sxy150489 8408057504Sxy150489clean: $(CLEAN_DEPS) 8508057504Sxy150489 8608057504Sxy150489clobber: $(CLOBBER_DEPS) 8708057504Sxy150489 8808057504Sxy150489# 8908057504Sxy150489# we're not linting e1000g. Will revisit 9008057504Sxy150489# 9108057504Sxy150489 9208057504Sxy150489lint: 9308057504Sxy150489 9408057504Sxy150489modlintlib: 9508057504Sxy150489 9608057504Sxy150489clean.lint: $(CLEAN_LINT_DEPS) 9708057504Sxy150489 9808057504Sxy150489install: $(INSTALL_DEPS) 9908057504Sxy150489 10008057504Sxy150489# 10108057504Sxy150489# Include common targets. 10208057504Sxy150489# 10308057504Sxy150489include $(UTSBASE)/intel/Makefile.targ 104