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# 224045d941Ssowmini# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 2308057504Sxy150489# Use is subject to license terms. 2408057504Sxy150489# 2508057504Sxy150489# uts/intel/e1000g/Makefile 2608057504Sxy150489# 2708057504Sxy150489# This makefile drives the production of the iprb 2808057504Sxy150489# network driver kernel module. 2908057504Sxy150489# 3008057504Sxy150489# intel architecture dependent 3108057504Sxy150489# 3208057504Sxy150489 3308057504Sxy150489# 3408057504Sxy150489# Paths to the base of the uts directory trees 3508057504Sxy150489# 3608057504Sxy150489UTSBASE = ../.. 3708057504Sxy150489 3808057504Sxy150489# 3908057504Sxy150489# Define the module and object file sets. 4008057504Sxy150489# 4108057504Sxy150489MODULE = e1000g 4208057504Sxy150489OBJECTS = $(E1000G_OBJS:%=$(OBJS_DIR)/%) 4308057504Sxy150489LINTS = $(E1000G_OBJS:%.o=$(LINTS_DIR)/%.ln) 4408057504Sxy150489ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 4508057504Sxy150489CONF_SRCDIR = $(UTSBASE)/common/io/e1000g 4608057504Sxy150489 4708057504Sxy150489# 4808057504Sxy150489# Include common rules. 4908057504Sxy150489# 5008057504Sxy150489include $(UTSBASE)/intel/Makefile.intel 5108057504Sxy150489 5208057504Sxy150489CFLAGS += -D_KERNEL -Di386 -DNEWSTAT -DNOMUT -DRCVWORKAROUND \ 5308057504Sxy150489 -DINTEL_IP \ 5408057504Sxy150489 -DPAXSON -DBAY_CITY \ 5508057504Sxy150489 -DTANAX_WORKAROUND -I$(UTSBASE)/common/io/e1000g 5608057504Sxy150489 5708057504Sxy150489CFLAGS_CPP_COMMENTS = -xCC 5808057504Sxy150489 5908057504Sxy150489CFLAGS += $(CFLAGS_CPP_COMMENTS) 6008057504Sxy150489 61*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-uninitialized 62*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 63*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-switch 64*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-label 65*7014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-variable 66*7014882cSRichard Lowe 6708057504Sxy150489# 6808057504Sxy150489# Define targets 6908057504Sxy150489# 7008057504Sxy150489ALL_TARGET = $(BINARY) $(CONFMOD) 7108057504Sxy150489LINT_TARGET = $(MODULE).lint 7208057504Sxy150489INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 7308057504Sxy150489 7408057504Sxy150489# 754045d941Ssowmini# Driver depends on MAC 7608057504Sxy150489# 774045d941SsowminiLDFLAGS += -dy -N misc/mac 7808057504Sxy150489 7908057504Sxy150489# 8008057504Sxy150489# Default build targets. 8108057504Sxy150489# 8208057504Sxy150489.KEEP_STATE: 8308057504Sxy150489 8408057504Sxy150489def: $(DEF_DEPS) 8508057504Sxy150489 8608057504Sxy150489all: $(ALL_DEPS) 8708057504Sxy150489 8808057504Sxy150489clean: $(CLEAN_DEPS) 8908057504Sxy150489 9008057504Sxy150489clobber: $(CLOBBER_DEPS) 9108057504Sxy150489 9208057504Sxy150489 93fe62dec3SChen-Liang Xulint: $(LINT_DEPS) 9408057504Sxy150489 95fe62dec3SChen-Liang Xumodlintlib: $(MODLINTLIB_DEPS) 9608057504Sxy150489 9708057504Sxy150489clean.lint: $(CLEAN_LINT_DEPS) 9808057504Sxy150489 9908057504Sxy150489install: $(INSTALL_DEPS) 10008057504Sxy150489 10108057504Sxy150489# 10208057504Sxy150489# Include common targets. 10308057504Sxy150489# 10408057504Sxy150489include $(UTSBASE)/intel/Makefile.targ 105