xref: /illumos-gate/usr/src/uts/intel/hxge/Makefile (revision 94c894bb)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21# uts/intel/hxge/Makefile
22#
23# Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#	This makefile drives the production of the Sun
27#	10G hxge Ethernet leaf driver kernel module.
28#
29#
30#	Path to the base of the uts directory tree (usually /usr/src/uts).
31#
32UTSBASE	= ../..
33
34#
35#	Define the module and object file sets.
36#
37MODULE		= hxge
38HXGE_OBJECTS =	$(HXGE_OBJS) $(HXGE_HPI_OBJS)
39OBJECTS		=  $(HXGE_OBJECTS:%=$(OBJS_DIR)/%)
40LINTS		= $(HXGE_OBJECTS:%.o=$(LINTS_DIR)/%.ln)
41ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
42CONF_SRCDIR	= $(UTSBASE)/common/io/hxge
43
44#
45#	Include common rules.
46#
47include $(UTSBASE)/intel/Makefile.intel
48
49#
50#	Override defaults to build a unique, local modstubs.o.
51#
52MODSTUBS_DIR	= $(OBJS_DIR)
53
54CLEANFILES	+= $(MODSTUBS_O)
55
56#
57#	Define targets
58#
59ALL_TARGET	= $(BINARY)
60LINT_TARGET	= $(MODULE).lint
61INSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
62
63#
64#
65# Turn on doubleword alignment for 64 bit registers
66#
67CFLAGS	+= -dalign
68#
69# Include hxge specific header files
70#
71INC_PATH	+= -I$(UTSBASE)/common/io/hxge
72#
73#
74# lint pass one enforcement
75#
76CFLAGS += -DSOLARIS
77#
78# Debug flags
79#
80# CFLAGS += -DHXGE_DEBUG -DHPI_DEBUG
81#
82LINTFLAGS += -DSOLARIS
83#
84# STREAMS, DDI API limitations and other ON header file definitions such as ethernet.h
85# force us to turn off these lint checks.
86#
87LINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
88LINTTAGS	+= -erroff=E_PTRDIFF_OVERFLOW
89LINTTAGS	+= -erroff=E_FALSE_LOGICAL_EXPR
90#
91#	Driver depends on mac & IP
92#
93LDFLAGS		+= -dy -N misc/mac -N drv/ip
94
95#
96#	Default build targets.
97#
98.KEEP_STATE:
99
100def:		$(DEF_DEPS)
101
102all:		$(ALL_DEPS)
103
104clean:		$(CLEAN_DEPS)
105
106clobber:	$(CLOBBER_DEPS)
107
108lint:		$(LINT_DEPS)
109
110modlintlib:	$(MODLINTLIB_DEPS)
111
112clean.lint:	$(CLEAN_LINT_DEPS)
113
114install:	$(INSTALL_DEPS)
115
116#
117#	Include common targets.
118#
119include $(UTSBASE)/intel/Makefile.targ
120