xref: /illumos-gate/usr/src/uts/intel/genunix/Makefile (revision dd4eeefd)
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
22#
23# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29#
30#	This makefile drives the production of the generic
31#	unix kernel module.
32#
33#	x86 implementation architecture dependent
34#
35
36#
37#	Path to the base of the uts directory tree (usually /usr/src/uts).
38#
39UTSBASE	= ../..
40
41#
42#	Define the module and object file sets.
43#
44MODULE		= genunix
45GENUNIX		= $(OBJS_DIR)/$(MODULE)
46
47OBJECTS		= $(GENUNIX_OBJS:%=$(OBJS_DIR)/%) \
48		  $(NOT_YET_KMODS:%=$(OBJS_DIR)/%)
49
50LINTS		= $(GENUNIX_OBJS:%.o=$(LINTS_DIR)/%.ln) \
51		  $(NOT_YET_KMODS:%.o=$(LINTS_DIR)/%.ln)
52
53ROOTMODULE	= $(ROOT_KERN_DIR)/$(MODULE)
54
55LIBGEN		= $(OBJS_DIR)/libgenunix.so
56LIBSTUBS	= $(GENSTUBS_OBJS:%=$(OBJS_DIR)/%)
57
58#
59#	Include common rules.
60#
61include $(UTSBASE)/intel/Makefile.intel
62
63#
64#	Define targets
65#
66ALL_TARGET	= $(LIBGEN)
67LINT_TARGET	= $(MODULE).lint
68INSTALL_TARGET	= $(GENUNIX) $(ROOTMODULE)
69
70#
71#	Overrides
72#
73CLEANFILES	+= $(LIBSTUBS) $(LIBGEN)
74BINARY		=
75
76#
77# Non-patch genunix builds merge a version of the ip module called ipctf.  This
78# is to ensure that the common network-related types are included in genunix and
79# can thus be uniquified out of other modules.  We don't want to do this for
80# patch builds, since we can't guarantee that ip and genunix will be in the same
81# patch.
82#
83IPCTF_TARGET	= $(IPCTF)
84$(PATCH_BUILD)IPCTF_TARGET =
85
86CPPFLAGS	+= -I$(SRC)/common
87
88#
89# For now, disable these lint checks; maintainers should endeavor
90# to investigate and remove these for maximum lint coverage.
91# Please do not carry these forward to new Makefiles.
92#
93LINTTAGS	+= -erroff=E_SUSPICIOUS_COMPARISON
94LINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
95LINTTAGS	+= -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
96LINTTAGS	+= -erroff=E_STATIC_UNUSED
97LINTTAGS	+= -erroff=E_PTRDIFF_OVERFLOW
98LINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
99
100#
101#	Default build targets.
102#
103.KEEP_STATE:
104
105def:		$(DEF_DEPS)
106
107all:		$(ALL_DEPS)
108
109clean:		$(CLEAN_DEPS)
110
111clobber:	$(CLOBBER_DEPS)
112
113lint:		$(LINT_DEPS)
114
115modlintlib:	$(MODLINTLIB_DEPS)
116
117clean.lint:	$(CLEAN_LINT_DEPS)
118
119install:	$(INSTALL_DEPS)
120
121$(LIBGEN):	$(GENUNIX) $(LIBSTUBS)
122	$(BUILD.SO) $(GENUNIX) $(LIBSTUBS)
123
124$(IPCTF_TARGET) ipctf_target: FRC
125	@cd $(IPDRV_DIR); pwd; $(MAKE) ipctf.$(OBJS_DIR)
126	@pwd
127
128$(GENUNIX): $(IPCTF_TARGET) $(OBJECTS)
129	$(LD) -r $(LDFLAGS) -o $@ $(OBJECTS)
130	$(CTFMERGE_GENUNIX_MERGE)
131	$(POST_PROCESS)
132
133#
134#	Include common targets.
135#
136include $(UTSBASE)/intel/Makefile.targ
137
138#
139#	Software workarounds for hardware "features".
140#
141include	$(UTSBASE)/i86pc/Makefile.workarounds
142
143ALL_DEFS += $(WORKAROUND_DEFS)
144
145#
146# Override.
147#
148$(MODULE).lint := GEN_LINT_LIB =
149