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
22 #
23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # This makefile drives the production of the Neterion Xframe
27 # 10G Ethernet (XGE) driver module in x86 systems
28 #
29
30 #
31 # Paths to the base of the uts directory trees
32 #
33 UTSBASE = ../..
34
35 #
36 # Define the module and object file sets.
37 #
38 MODULE = xge
39 OBJECTS = $(XGE_HAL_OBJS:%=$(OBJS_DIR)/%) $(XGE_OBJS:%=$(OBJS_DIR)/%)
40 LINTS = $(XGE_HAL_OBJS:%.o=$(LINTS_DIR)/%.ln) $(XGE_OBJS:%.o=$(LINTS_DIR)/%.ln)
41 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
42
43 #
44 # Include common rules.
45 #
46 include $(UTSBASE)/intel/Makefile.intel
47
48 #
95
96 # Lint flag
97 #
98 LINTFLAGS += $(XGE_CFLAGS) -Xc99=%all
99
100 #
101 # For now, disable these lint checks; maintainers should endeavor
102 # to investigate and remove these for maximum lint coverage.
103 # Please do not carry these forward to new Makefiles.
104 #
105 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
106 LINTTAGS += -erroff=E_STATIC_UNUSED
107 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
108
109 CERRWARN += -_gcc=-Wno-parentheses
110 CERRWARN += -_gcc=-Wno-unused-variable
111 CERRWARN += -_gcc=-Wno-unused-label
112 CERRWARN += -_gcc=-Wno-empty-body
113 CERRWARN += -_gcc=-Wno-uninitialized
114
115 #
116 #
117 # Default build targets.
118 #
119 .KEEP_STATE:
120
121 def: $(DEF_DEPS)
122
123 all: $(ALL_DEPS)
124
125 clean: $(CLEAN_DEPS)
126
127 clobber: $(CLOBBER_DEPS)
128
129 lint: $(LINT_DEPS)
130
131 modlintlib: $(MODLINTLIB_DEPS)
132
133 clean.lint: $(CLEAN_LINT_DEPS)
134
|
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
22 #
23 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 #
26 # Copyright (c) 2018, Joyent, Inc.
27
28 #
29 # Paths to the base of the uts directory trees
30 #
31 UTSBASE = ../..
32
33 #
34 # Define the module and object file sets.
35 #
36 MODULE = xge
37 OBJECTS = $(XGE_HAL_OBJS:%=$(OBJS_DIR)/%) $(XGE_OBJS:%=$(OBJS_DIR)/%)
38 LINTS = $(XGE_HAL_OBJS:%.o=$(LINTS_DIR)/%.ln) $(XGE_OBJS:%.o=$(LINTS_DIR)/%.ln)
39 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
40
41 #
42 # Include common rules.
43 #
44 include $(UTSBASE)/intel/Makefile.intel
45
46 #
93
94 # Lint flag
95 #
96 LINTFLAGS += $(XGE_CFLAGS) -Xc99=%all
97
98 #
99 # For now, disable these lint checks; maintainers should endeavor
100 # to investigate and remove these for maximum lint coverage.
101 # Please do not carry these forward to new Makefiles.
102 #
103 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
104 LINTTAGS += -erroff=E_STATIC_UNUSED
105 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
106
107 CERRWARN += -_gcc=-Wno-parentheses
108 CERRWARN += -_gcc=-Wno-unused-variable
109 CERRWARN += -_gcc=-Wno-unused-label
110 CERRWARN += -_gcc=-Wno-empty-body
111 CERRWARN += -_gcc=-Wno-uninitialized
112
113 # needs work
114 SMOFF += indenting,all_func_returns,no_if_block
115
116 #
117 #
118 # Default build targets.
119 #
120 .KEEP_STATE:
121
122 def: $(DEF_DEPS)
123
124 all: $(ALL_DEPS)
125
126 clean: $(CLEAN_DEPS)
127
128 clobber: $(CLOBBER_DEPS)
129
130 lint: $(LINT_DEPS)
131
132 modlintlib: $(MODLINTLIB_DEPS)
133
134 clean.lint: $(CLEAN_LINT_DEPS)
135
|